Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1940
WebDataTree ClientEvent DragEnter eventArgs DragDropPoint always undefined
posted

Hello,

as the topic says, when I use a WebDataTree with a client function DragEnter the event argument get_dragDropPoint() is always undefined.

here is some code to show you what I did to find this out:

function webDataTree_DragEnter(sender, eventArgs) {

        var dragDropPoint = eventArgs.get_dragDropPoint();

        console.log(dragDropPoint);

}

It is important for me to know if the user is going to drag an item on, after or before a node to check for permissions to do so (on server side)

I could quite easily implement this with the missing argument. Any ideas?

Carsten