Vaadin - How add checkbox component to a tree? -
i'm using vaadin 7.5.3 develop web application. there need tree selectable nodes. want select nodes using checkboxes. after trying many ways , goggling, not find how add checkbox component tree node. as per knowledge, current latest version aka vaadin 7.5.6, not possible, jouni point out in discussion on forums . has opened an improvement ticket don't see changes far. nonetheless, should able fake using treetable component . can find here complete example, , below excerpt it: final treetable ttable = new treetable("my treetable"); ttable.addcontainerproperty("name", checkbox.class, ""); ttable.addcontainerproperty("city", string.class, ""); ttable.setwidth("20em"); // create tree nodes ttable.additem(new object[]{new checkbox("root"), "helsinki"}, 0); ttable.additem(new object[]{new checkbox("branch 1"), "tampere"}, 1); ttable.additem(new object[]{new checkbo...