afterRowDrag
fires after dragging of a row is finished
afterRowDrag: (data: object, event: MouseEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
data: object
- data object. It contains the following properties:start: string | number
- the id of a row, from which the dragging process has startedsource: array
- an array with ids of dragged rowstarget: string | number
- the id of a potential target row
event: MouseEvent
- a native HTML event object
Example
grid.events.on("afterRowDrag", (data, event) => {
// your logic here
});
Related sample: Grid. Events
Change log:
added in v7.0