Hi,
I am new to
struts.
If i want to change the value in combo box it changes .But i login again in the application there are no changes in the combobox.
<td>
${c.cucl}
<html:select property = "cucl" name = "customerForm" >
<html
ptions property="custGroupsMap" name="customerForm" />
<c:set var="cg" items="${sessionScope.custGroupsMap}"/>
option value="${cg.key}" ${(cg.key == c.cucl) ? 'selected' : ''}${cg.value} (${cg.key})</option>
<html
ption value="${cg.key}" >${cg.value} (${cg.key})</html
ption>
</html:select></td>
Thnaks