Hello,
There is a way to do some like:
public TreeNode dependentNode;
[...]
public void onSelectionChanged(SelectionEvent event) {
TreeNode node = (TreeNode) event.getRecord();
dependentNode.setState(event.getState());
I saw the tree with checkbox didnt have really checkbox, instead checkbox are images so i dont know how i can change the state of one of them.
Thanks.
There is a way to do some like:
public TreeNode dependentNode;
[...]
public void onSelectionChanged(SelectionEvent event) {
TreeNode node = (TreeNode) event.getRecord();
dependentNode.setState(event.getState());
I saw the tree with checkbox didnt have really checkbox, instead checkbox are images so i dont know how i can change the state of one of them.
Thanks.
Comment