You could create your own bean with nested menuitems,
class MenuItem {
...
List getItems() {
return items;
}
...
void addMenuItem(MenuItem item) {
this.items.add(item);
}
//and so on
}
You can use in tiles config, tiles controller or even a
servlet that p
Greetings, I've google'd the web and I haven't found any good advice
on how to make submenus with tiles.
What I have is a menu structure like this
Item1
subitem1
subitem2
Item2
subitem2
subitem2
...
How would I define this in a tiles-def? What I have so far is
something that looks like
2 matches
Mail list logo