Our pure JavaScript Scheduler component


Post by Highnoon »

Hi,

is it possible to remove the resource column resizer. I tested already:

        columnresize: {
            disabled: true
        },
        columns: [{
            resizable: false,

   }]

No success!

Thank you


Post by mats »

What's the "resource column resizer"?

Please include more code, ideally a runnable test case so we can get some context.


Post by Highnoon »

Oh, wrong term sorry.

resizer.png
resizer.png (11.93 KiB) Viewed 1201 times

Post by Highnoon »

Hi,

maybe its better to offer some additional informations. When i am using a partnered scheduler i get a 'ResizeObserver loop limit exceeded' - error in my error handler. So this is why I want to remove the resizer. Maybe its possible to add/remove resizer dynamically?

THX


Post by mats »

Set this to false in your config: https://bryntum.com/docs/scheduler/#Grid/feature/RegionResize

In what browser do you get this error?


Post by Highnoon »

Mats,

superb thanks a lot. But how to set it dynamically.

scheduler.setConfig({ feature: { regionResize: true } });
 or
scheduler.setConfig({ regionResize: true }); 

Don't works. Is it possible?


Post by mats »

scheduler.features.regionResize.disabled = true/false;

Post by Highnoon »

There is still no effect. But its ok. Thanks!


Post by mats »

It's already supported - you can try this out here: https://bryntum.com/examples/grid/lockedcolumns

In Console:

grid.features.regionResize.disabled = true

Docs: https://bryntum.com/docs/scheduler/#Grid/feature/RegionResize#property-disabled


Post Reply