Premium support for our pure JavaScript UI components


Post by bpepers »

Hey, we noticed that you are able to drag the selection column when column reorder is turned on but it seems like it doesn't always work sometimes you can drag it and sometimes you can't. I've attached a video showing this on the Column Types Demo.
Due to these Issues we would prefer to not allow our users to drag this column at all, so is it possible to disable column reordering just for the selection column?

Attachments
Screen Recording 2022-11-24 at 10.58.08.mov
(17.16 MiB) Downloaded 33 times

Post by tasnim »

Thanks for your detailed report. I've created a ticket to investigate it. Here it is https://github.com/bryntum/support/issues/5646

Due to these Issues we would prefer to not allow our users to drag this column at all, so is it possible to disable column reordering just for the selection column?

You just need to set https://bryntum.com/products/gantt/docs/api/Grid/column/Column#config-draggable to false

grid.columns.getById('b-grid-1-selection-column').draggable = false;

Post by bpepers »

Great thanks, yeah setting draggable to false worked for us


Post Reply