afterColumnDrag
pro version only
The described functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
fires after dragging of a column is finished
afterColumnDrag: (data: object, events: 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 started
- source: array- an array with ids of dragged columns
- target: string | number- the id of a potential target column
 
- event: MouseEvent- a native HTML event object
Example
grid.events.on("afterColumnDrag", (data, event) => {
    // your logic here
});
Change log:
added in v7.0