It's not a secret anymore!
The moose likes Struts and the fly likes 3 - level folder display in struts Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "3 - level folder display in struts" Watch "3 - level folder display in struts" New topic
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
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: 3 - level folder display in struts
 
Similar Threads
I'm totally confused over this one....
How to display only selected amount of data from database in two dropdown lists?
URL Rewrite
Dynamic Drop Down
TransientObjectException: object references an unsaved transient instance