| Author |
unable to sove iterate problem
|
lee anthony
Ranch Hand
Joined: Jan 23, 2004
Posts: 35
|
|
see friends i have to iterate two tables by comaping id field which is common in both tables one category can have many ideas depending on id Assuming collection are categories and ideas #########I did try the below illogical code also ############### <logic:iterate name= "categories " property= "id" id= "cat" > <bean:write name= "cat " property= "id " /> <logic:iterate name= "cat" property= "ideas " id= "idea " > <bean:write name= "idea " property= "id " /> </logic:iterate > </logic:iterate > ################ can anybody help me out lee
|
 |
Srikanth Shenoy
author
Ranch Hand
Joined: Jan 24, 2004
Posts: 184
|
|
I feel this code belongs in your Action class (or any web tier class or even business tier), not JSP. Create an aggregate collection and then let the JSP just iterate over it and display. Srikanth Author: Struts Survival Guide - Basics to Best Practices
|
Srikanth Shenoy
Author of Struts Survival Guide : Basics to Best Practices
|
 |
 |
|
|
subject: unable to sove iterate problem
|
|
|