How do move the node up and down through up and down buttons?
give me the source code
HI,
You could wire up the WebTree's Client-Side KeyDown event - in that event -
1) get the selected node - using the WebTree's getSelectedNode method
2) using the selectednode you could use the getText method
3) depending on the key pressed - you can use the insertchild Method to insert the node - this method has a beforeindx property
4) then you can use Node's remove or removeChild method
5) using the Tree's setSelectedNode method to select a moved node.
Here is a help link to our Client Side object model for the WebTree
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/WebTree_CSOM_Overview.html
even i am looking for same functionality.