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.
GWT 2.5 (to be released in a month or so) will add a
CellTableBuilderthat 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
CellTreerender columns (use aCompositeCellfor flexibility and reuse). AFAICT thus is how Google Groups shows the unread count and menu for your favorite groups.