Skip to main content

afterRowDrop

fires before the user has finished dragging a row but after the mouse button is released

afterRowDrop: (data: object, events: MouseEvent) => void;

Parameters:

  • data: object - data object. It contains the following parameters:
    • start: string | number - the id of a row, from which the dragging process has started
    • source: array - an array with ids of dragged rows
    • target: string | number - the id of a potential target row
  • events: MouseEvent - a native HTML event object

Example

grid.events.on("afterRowDrop", function(data, events) {
// your logic here
});

Related sample: Grid. Events

Change log:

added in v7.0