Hi,
The client side method get_selectedNodes() should return the nodes in order they were selected, this doesnt seems the case anymore...
Before implementing my own logic I would like to know if this is an issue/bug?
Thanks
Here's a snippet :
The client side method get_selectedNodes() should return the nodes in order they were selected, this doesnt seems the case anymore...
Before implementing my own logic I would like to know if this is an issue/bug?
Thanks
Here's a snippet :
var
treeView = $find(RadTreeViewClientId);
var
nodes = treeView.get_selectedNodes();
for
(
var
i = 0; i < nodes.length; i++) {
console.log(
"SelectedNode "
+ i +
": "
+ nodes[i].get_text());
}