cancelColumnDrop
fires on moving a mouse pointer out of borders of a column while dragging the column
cancelColumnDrop: (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 column, from which the dragging process has startedsource: array
- an array with ids of dragged columnstarget: string | number
- the id of a potential target column
event: MouseEvent
- a native HTML event object
Example
treegrid.events.on("cancelColumnDrop", (data, events) => {
// your logic here
});
Change log:
added in v7.0