Skip to main content

resize

fires on resizing a column

resize: (column: object, event: MouseEvent) => void;

Parameters:

The callback of the event is called with the following parameters:

  • column: object - an object with a column configuration
  • event: MouseEvent - a native HTML event object

Example

grid.events.on("resize", (column, event) => {
// your code here
});

Related sample: Grid. Events

Change log:

added in v6.2