Hello,
i'm using
and i'am trying to handle the selection in these Checbox,i mean having the checkbox selected in a record for example.
i noticed that i can use :
but i am not sure of what contains this ListGridRecord[]
my tree is set with
where the first field is the Id and the second one,is the Id Parent.
it is possible to get in some way, when selecting the node with the Id and IdParent ?
i'm using
Code:
TreeGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
i noticed that i can use :
Code:
TreeGrid.getSelection();
my tree is set with
Code:
TreeNode[] employeeData = new TreeNode[] { new EmployeeTreeNode("4", "1", "Charles Madigen", "Chief Operating Officer", true), new EmployeeTreeNode("189", "4", "Gene Porter", "Mgr Tech Plng IntIS T", false), new EmployeeTreeNode("265", "189", "Olivier Doucet", "Asset Spec Lines Stns", false), new EmployeeTreeNode("264", "189", "Cheryl Pearson", "Dsl Sys Rep", false), new EmployeeTreeNode("188", "4", "Rogine Leger", "Mgr Syst P P", true) };
it is possible to get in some way, when selecting the node with the Id and IdParent ?
Comment