Hi All,
I have store the value in action class session scope.
I want to show that value in
jsp drop down box.
I am using the following format.
<sLogic:iterate name="interCompanyRent" id="interCompany">
<TR>
<TD align="right"><layout:label>Rem Div:</layout:label></TD>
<TD>
<rem:select property="divisionId" value='<bean:write name="interCompany" property="divisionId"/>' onchange="retriveData(this.value)">
<html:option value="">-- Select Division --</html:option>
<html:options collection="all_division_list" property="id" labelProperty="label" />
</rem:select>
</TD>
</sLogic:iterate>
i am setting the value in the value attribute of rem:select tag.
but i am not able to set the vale.
In the loop i have adde two text box. That is working fine.
Can anybody tell me how to do that.
Thanks,
Achyut