I want to expand the node by Code,
In Microsoft's WebControl, I expand the node is example.
node.expand();
in the telterik, i am not finded the method,
I set the ExpandMode of property is TreeNodeExpandMode.ServerSide and expand the node after loading.example
rootNode.ExpandMode = TreeNodeExpandMode.ServerSide; ;
In Microsoft's WebControl, I expand the node is example.
node.expand();
in the telterik, i am not finded the method,
I set the ExpandMode of property is TreeNodeExpandMode.ServerSide and expand the node after loading.example
rootNode.ExpandMode = TreeNodeExpandMode.ServerSide; ;
trvwNewTree.Nodes.Add(rootNode);
//rootNode.ExpandChildNodes();
rootNode.Expanded = true;
I also used the note code, but i fonded is not useful.
other:
I found the + is to - while using exmaple front code.
After loading the rootNode,the child is empty. I want to use the " rootNode.Expanded = true;" to fire the NodeExpand event, In this event is the code to load the child node.
thank you