• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

unable to sove iterate problem

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
author
Posts: 184
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
reply
    Bookmark Topic Watch Topic
  • New Topic