Hi,
I'm using a logic:equal tag in my jsp and the value of the property has to be
compared with the value in a bean. How is it possible to do that?
In the following code, both "inventoryDefinitions" and "equipTypes" are of type
List.
<logic:iterate id="iDefObj" name="IDefForm" property="inventoryDefinitions">
<logic:iterate id="equipTypeObj" name="IDefForm" property="equipTypes">
<logic:equal name="iDefObj" property="equipType"
value="equipTypeObj.equipType">
<bean:write name="equipTypeObj"
property="equipTypeDesc"/>
</logic:equal>
</logic:iterate>
</logic:iterate>
I have tried several ways, including
<logic:equal name="iDefObj" property="equipType"
value="<bean:write name='equipTypeObj' property='equipType'/>">
but nothing seems to work.
Thanks,
Karan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]