Hi,
I have two dropdown box(combo box) in one
jsp.
In first combo box, I iterate one ArrayList comes from Action class.
In List , I set Property's name and ID.
Propertyname is displayed in combo box.
and propertyID is set in <option> tag's value attribute.
code for first combo box :-
--------------------------------------------------------------------------
<logic:iterate id="prop" name="lstprops">
<bean
efine id="iptID" name="prop" property="PropertyID"/>
<option value='<%=String.valueOf(iptID)%>'><bean:write name="prop" property="name"/></option>
</logic:iterate>
----------------------------------------------------------------------
After select one propertyname in the first combo box, now I want to iterate same list in second combo box.
but In second combo box should not be contain "propertyname" which I have selected in first combo box.
How can I do that ?
can I use logic:equal tag ? but How ?
Please help me.
Thanks,
Nimish Patel