Foros de discusión

Custom field drop down box value

thumbnail
Albert Devarajan, modificado hace 11 años.

Custom field drop down box value

New Member Mensajes: 21 Fecha de incorporación: 12/12/12 Mensajes recientes
I have developed a dropdown using custom field with some options such as A,B and C ..when I select B and save it, the value should be displayed as the selected one after i clicked the save button..How can i do that can anyone please help me??
thumbnail
Juhi Kumari, modificado hace 11 años.

RE: Custom field drop down box value

Expert Mensajes: 347 Fecha de incorporación: 12/12/11 Mensajes recientes
Hi,

Set that value in request in your java class and again get that value from request in your jsp ans set as selected.

Regards
Juhi
thumbnail
Albert Devarajan, modificado hace 11 años.

RE: Custom field drop down box value

New Member Mensajes: 21 Fecha de incorporación: 12/12/12 Mensajes recientes
Hi juhi,
I followed your steps but I am not getting the result. My requirement is as below
I am having a drop down field as and when i m selecting another value it should be displayed after i clicked save button

Archivos adjuntos:

thumbnail
Juhi Kumari, modificado hace 11 años.

RE: Custom field drop down box value

Expert Mensajes: 347 Fecha de incorporación: 12/12/11 Mensajes recientes
Hi,
For ex.
In jsp
<select name="name">
	<option value="value1">Value1</option>
	<option value="value2">Value2</option>
</select>


In processAction
String val = request.getParamater("name");
request.setAttribute("name",name);


again in diView
request.setAttribute("name",request.getAttribute("name"));


and when come back to jsp

&lt;%
  String name = (String)request.getAttribute("name");
%&gt;
<select name="name">
	<option value="value1" <%="(name.equalsIgnoreCase(&quot;value1&quot;))" ? "selected" : "" %>&gt;Value1</option>
	<option value="value2" <%="(name.equalsIgnoreCase(&quot;value2&quot;))" ? "selected" : "" %>&gt;Value2</option>
</select>


Try like this.

Regards
Juhi
thumbnail
Albert Devarajan, modificado hace 11 años.

RE: Custom field drop down box value

New Member Mensajes: 21 Fecha de incorporación: 12/12/12 Mensajes recientes
Thanks a lot juhi