| Author |
Auto selecting value in dropdown using JSTL
|
sudhakar Tadepalli
Ranch Hand
Joined: Dec 27, 2001
Posts: 130
|
|
Hi all,
I am using JSTL for displaying the dropdown. After selecting value, I am saving selected value in dropdown. When I retrieve it from the data base, I need to auto select that value from could someone help please. Thanks.
<html:select property="paymentFrequency">
<html ption value="0"> </html ption>
<c:forEach var="paymentType" items="${paymentFrequencies}">
<html ption value="${paymentType.paymentFrequencyID}">${paymentType.paymentFrequencyDesc}</html ption>
</c:forEach>
</html:select>
Ex: value =1 display value is "Monthly". So from the databse if the value I am geting as 1, I need to auto populate that value in the dropdown.
Thanks.
Sudhakar
|
 |
Rudy Gireyev
Ranch Hand
Joined: May 03, 2011
Posts: 39
|
|
There are several ways of accomplishing preselection of a row in STRUTS. It looks like the option you have chosen is to loop through your Collection yourself and build your select box manually. In this case you have to place the conditional statement, which I believe is another logic tag, that tests whether the value you'd like to preselect has been reached in the loop, and if so you'll have to output the option line with the selected attribute set.
Other options are using the the html:options or html:optionsCollection STRUTS tags and using their api to preselect the value for you.
|
 |
sudhakar Tadepalli
Ranch Hand
Joined: Dec 27, 2001
Posts: 130
|
|
Thanks Rudy. Actually I did not change anny code in jsp. I just passed the value from the database and JSTL took care of pre-selecting.
Note : I have a conditional statement in FormBean.
Thanks
Sudhakar
|
 |
 |
|
|
subject: Auto selecting value in dropdown using JSTL
|
|
|