RadTreeView for ASP.NET

NodeEdit Send comments on this topic.
See Also
Telerik RadTreeView Server-Side > Server-Side Events > NodeEdit

Glossary Item Box

NodeEdit

Telerik RadTreeView supports client-side Node Editing - you can simply select a node and press F2 (or click an already selected node) and you'll be able to edit the node text client-side. In order to do that, you need to set the AllowNodeEditing property of Telerik RadTreeView to true. If the text of the node has been changed, the NodeEdit server-side event fires, accepting EventsArgs of type RadTreeNodeEvents args. The node edited is RadTreeNodeEventArgs.NodeEdited, the new text value is in RadTreeNodeEventArgs.NewText. Telerik RadTreeView does not automatically change the node text, so you'll need to do that in your event handler (if you want to).
 
See live example at: Node Text Editing

See Also

Telerik RadTreeView Client-Side
Client-Side Node Editing