treeview_rename_handler

Client side event handler to be called before and after the user edit tree node text.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 treeview_rename_handler(treeview, node, newText)

Parameters

treeview
The TreeView object that raised this event.
node
The TreeNode object whose text has been changed.
newText
The new text for ClientSideOnNodeRename. Not used for ClientSideOnNodeRenaming.

Return Value

Returns false to cancel the change.

See Also