| Author |
3 - level folder display in struts
|
Sander Evanfield
Greenhorn
Joined: Oct 15, 2004
Posts: 13
|
|
I have to show data in Jsp the following way using logic::iterate Category 1 SubCategory 1 rpt1-name rpt2-name SubCategory 2 rpt1-name rpt2-name Category 2 ...... It is possible that subcategory could be blank in that scenario only have to show reports below Category these are all Strings. How do I use datastructure like HashMap and logic::iterate to acheive this
|
xxx
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
I'd suggest creating a hierarchy of model objects. For example: public class ReportForm extends ActionForm { List<Category> categories; // getters and setters public class Category { String categoryName; List<Category> subCategories; List<Report> reports; // getters and setters } Public class Report { String reportName; // getters and setters } Then in your JSP:
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: 3 - level folder display in struts
|
|
|