Hi,
I tried using the WebTree.SeelctedNode to get the currently selected node, but it keeps returning null. I need to get this value before I reload the DataTree inside a WARP control, inside a WebSplitter Pane.
Any ideas?
Thanks, Mark
You can use the following infragistics function to get the selected node:
var node = igtree_getTreeById("UltraWebTree1").getSelectedNode();if (node) {
// do whatever here...
};