CheckboxTree does not have the features you mentioned however its
rendering is fine grained so you could override the methods you need and
render appropriately.
Thank you.
Any plans to include those options into the official Component itself?
(I mean "nodeTitle" and "forceExpanded")
One thing which won't work is "mouseOver" on
TreeListener. TreeListener fires server side events and mouseOver is
more of a client side need.
Yes. Sorry (dealing to much with GWT lately :) ).
That said if the component you need does not collapse and is always
expanded why not use an HTML list instead:
<ul>
<li>checkbox</li>
<ul>
<li>checkbox</li>
</ul>
</ul>
Seems much simpler than coercing Tree into a mutli select.
Well, the tree seems a more natural choice to me:
- CheckboxTree is a component already (and does most of the job).
- the "helper lines" that create the impression of a tree are better
than spaced indent.
Thank you,
Demetrios.