RadTreeView for ASP.NET AJAX

RadControls for ASP.NET AJAX

If you need to drop a TreeNode onto an HTML element that has no ID, then a postback will not occur upon dropping. Hence, the NodeDrop event will not be executed, either.

To solve the problem you need to hook on the OnClientNodeDropping event and set an ID to the target HTML element, like:

CopyJavaScript
function onNodeDropping(sender, args){ 
    args.get_htmlElement().id="IdValue"; 
    }

You can get the ID of the HTML element in the NodeDrop event handler by using the event arguments: