Our blazing fast Grid component built with pure JavaScript


Post by janan »

Is there any direct event that gets triggered when a column is dragged 'manually'. We use

grid.columns.on('change', _changeFunction);

But this gets triggered even when the column.resizeToFitContent is called.


Post by mats »

Dragged as in resized, or moved?


Post by janan »

Dragged as in resized.

Image

Attachments
Screenshot 2021-09-08 at 15.56.56.png
Screenshot 2021-09-08 at 15.56.56.png (59 KiB) Viewed 817 times

Post by mats »

We don't have any public events, you can try listening to:

grid.features.columnResize.resizer.on('resizing', console.log)

Could you please share the use case for this? Then we can discuss internally if this event should be public.


Post Reply