I am changing the row drag symbol via this method in RowDrag:
rowDragAndDropModule.addErrorElem();
It works good to identify an element where I cannot drop to. However I'm running into a problem.
The user can drop the item between two rows, but the way I am detecting it is always over a child row. For row drop this is easy to do dropPosition property of the event, but for rowDrag event it is undefined.
How can I detect that the inbetween symbol is being shown and a drop will result in an insert between rows in the row drag event?