Hi,
I'm trying to implement drop of a custom item on a RadGridView, which doesn't come from a telerik control, and I need to get the row where the user has dropped the item.
I have not been able to work with the RadGridViewDragDropService, the events are never fired. Maybe I'm not registering it up correctly...
So I setup a basic winform dragenter + dragdrop events, but in the dragdrop event handler, I'm unable to get the targeted cell or row.
var point = RdgvDestinationFolder.PointToClient(new Point(e.X, e.Y));
var child = RdgvDestinationFolder.GetChildAtPoint(point);
// child is null...
I have researched others topic, and found one with a method "getelementat" but it look like it doesn't exist anymore.
I tried to workaround the issue with caching the RowMouseMove sender... but this event isn't fired when dragging over...
I'm also stuck with 2022.3.1109.40
Thanks for your help.