Skip to main content

beforeRowDrop

fires before the user has finished dragging and released the mouse button over a target row

beforeRowDrop: (data: object, events: MouseEvent) => void | boolean;

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

Returns:

Return false to block the default action; otherwise, true.

Example

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

Related sample: Grid. Events

Change log:

added in v7.0