Posted 01 Mar 2012 Link to this post
Posted 06 Mar 2012 Link to this post
You can use the DragOverNode event of the RadTreeView control to prevent dropping a node at the wrong position. You can use the following code snippet:
private
void
radTreeView1_DragOverNode(
object
sender, RadTreeViewDragCancelEventArgs e)
{
if
(e.DropPosition != DropPosition.AsChildNode)
e.Cancel =
true
;
}
I hope this helps.