I am using https://github.com/logicbomb/lvlDragDrop to implement drag and dropping. I applied the directive to the rowTemplate in angular, so each cell will be drag and droppable.
For the most part the actual feature is working, what I want from it is still being implemented. When I select 1 cell and drop it into another, I want the rowEntity of each cell, but I do not know how to get this rowEntity without triggering ng-grid events, such as ngStartCellEdit.
If I could at the very least, get the row index and col index of the cell I drag, it would be a great starting point.
The library I am using is using angular.element to find the element I am dragging, but I have yet to find a way to further find the rowEntity data of the dragged item.
Any suggestions or ideas ?