Reputation: 7630
I want to use cell tree as a cell table column. because GWT does not have tree table. In my current project, I have to make feature like item and it's subitem in cell table. so it is not possible without tree table
If any body have idea of this then please help to make it possible.
Upvotes: 0
Views: 905
Reputation: 7630
I am trying build tree table with tree widget plus flextable only. With the help of both, I am able to create custom tree table widget.
http://examples.roughian.com/index.htm#Widgets~Tree
finally..I able to create custom tree table as requirement.
Upvotes: 0
Reputation: 64541
GWT 2.5 (to be released in a month or so) will add a CellTableBuilder
that will let you generate additional rows; handling events on them will allow you to show/hide "child rows", mimicking a tree table.
Alternately, and withou waiting for 2.5, you can have your cells in a CellTree
render columns (use a CompositeCell
for flexibility and reuse). AFAICT thus is how Google Groups shows the unread count and menu for your favorite groups.
Upvotes: 2