I am displaying a lot of boolean values on a page as checkboxes with labels.
For some of them, a “checkbox object” can itself contain several other sublevels of checkboxes.
So I want to display them as some kind of Tree: when selecting a checkbox that has subboxes, they should only then be displayed. when deselecting the most upper checkbox, all nested boxes/entries should disappear.
How could I achieve this with JSF or GWT?
Thanks
This seems a typical usage of the GWT CellTree, take a look to the ShowCase example.