Hi, is there a way to detect over which element I am currently do the dragging (possibly using DragMoveHandler) ? I have an HTML table set as Target Element for drag-and-drop. When I do the dragging I want to detect which cell I am dragging over. I tried "elementFromPoint" by passing coridnates retreived from DragMoveHandler event args - but it retrieves the IFRAME used for dragging.
And secondary, when I am using custom HTML markup for the drag appearance - is there a way to position that markup always next to mouse cursor? Sometimes when initial source appearance is longer than custm HTML markup - it is positioned far away from the mouse cursor (see the attachment).
Thanks!
I think I found the solution to the first problem:
http://codecorner.galanter.net/2009/07/13/infragistics-drag-and-drop-detecting-element-during-drag
but still no answer for the second one.