Premium support for our pure JavaScript UI components


Post by denys.bogdanov »

I need help how to managing Grid state. I can't find solution how to catch event drag when we are dragging the column's. Some example will be nice to have.


Post by mats »

Please see https://bryntum.com/docs/grid/#Grid/feature/ColumnReorder

Allows user to reorder columns by dragging headers. To get notified about column reorder listen to change event on columns store.

You can try this here: https://bryntum.com/examples/grid/state/

grid.columns.on('change', console.log)

Post Reply