Skip to main content

afterColumnHide

fires after a column is hidden

afterColumnHide: (column: object) => void;

Parameters:

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

  • column: object - an object with a column configuration

Example

treegrid.events.on("afterColumnHide", (column) => {
// your logic here
});

Related sample: TreeGrid. Events

Change log:

added in v7.0