hi all,
I want to use the logic match tag to equate the values from 2 collection. here is my code...
<logic:iterate id="accountdto" name="AccountDTO" scope="request" type="com.test.AccountDTO">
<tr>
<logic:iterate id="con" name="ContactDTO" scope="request" type="com.test.ContactDTO">
<logic:match name="con" property="accountId" value="accountdto.accountNumber">
..
..
..
some code
..
</logic:match>
</logic:iterate>
</tr>
</logic:iterate>
I want to equate the accountNumber in bean accountDTO to accountID in bean ContactDTO. How can i do that???
Regards,
Rashmi Tambe
I want to use the logic match tag to equate the values from 2 collection. here is my code...
<logic:iterate id="accountdto" name="AccountDTO" scope="request" type="com.test.AccountDTO">
<tr>
<logic:iterate id="con" name="ContactDTO" scope="request" type="com.test.ContactDTO">
<logic:match name="con" property="accountId" value="accountdto.accountNumber">
..
..
..
some code
..
</logic:match>
</logic:iterate>
</tr>
</logic:iterate>
I want to equate the accountNumber in bean accountDTO to accountID in bean ContactDTO. How can i do that???
Regards,
Rashmi Tambe