I have a simple Kendo grid defined in this fiddle. I would like to drag and drop one row onto another. That part does work.
However, while I am dragging the row, I want highlight the row underneath the dragged one to indicate to the user that if they were to drop it here - this is the row that would be replaced.
To that end, I handle dragenter
and dragleave
events on the grid.table.kendoDropTarget. Unfortunately, it treats the entire grid as a drop target and only fires the event only once when I move the dragged item around the grid.
So my question is how to visual identify the row target of the drop during dragging operation.