0
I am using the following input with 2 pre-set values.
<input type="text" class="read-only" value="${FORM.dataAgendamento + FORM.horaAgendamento}" readonly="readonly" size="40"/>
If they are integers, it works perfectly, but for strings I’m getting java.lang.Numberformatexception:
I wanted to know how to perform this string concatenation in this same input.
Will this value be analyzed by Java or Javascript? The error is in Java, but the tags are Javascript.
– Woss
Are you using JSP? What are the values of these variables?
– Victor Stafusa