Search found 795 matches

I see the docs for selectionMode are short on info about that, we will remedy that (issue opened https://github.com/bryntum/support/issues/8402)

Hi, To show/hide the checkbox selection column at runtime, change selectionMode.checkbox : grid.selectionMode.checkbox = false; Used in this demo https://bryntum.com/products/grid/examples/selection/ https://bryntum.com/products/scheduler/docs/api/Core/Base#function-setConfig is still supported, you...
Hi, If grid.columns.first etc. is not reliable in your app then I recommend configuring the selection column with an id instead, and replace your calls to retrieve it, columns.get(field) -> columns.getById(id) . That should hopefully require minimal changes in your code. const grid = new Grid({ sele...
Hi, We are happy to answer more specific questions on the API, check buggy test cases etc. but unfortunately debugging your modifications of our sources is out of scope for this support forum. If you want help with it, I recommend hiring help through our Professional Services (https://bryntum.com/se...

Hi,

It is not something that was ever intended to work, a checkbox selection column is tied to the selection model and only intended to control row selection.

May I ask what are you using field on it for?

Hi, The checkbox selection column is not a fully normal CheckColumn. It is not supposed to have any field configured, because it is not linked to record data (it is linked to grid selection). We will clarify that in docs. And to get access to it at runtime, you can use grid.columns.first (if you als...

Hi,

Understood, that information is added to the ticket. I cannot say when investigation will start, I recommend subscribing to the ticket to get notified when its status changes

Hi, 1) Something like this was what I suggested, seems to do what you need when I try it: scheduler.on({ beforeEventDropFinalize({ context }) { // Determine drop diff in ms const dropData = context.dropData.events[0], diff = dropData.startDate - dropData.eventRecord.startDate; // Flag drop as invali...
Hi, When exporting the html of the page is collected and sent to the export server (or to the print feature that can be used for local export). I suspect that the custom element is collected as any other tag, and then transmitted. But the export server does not have the implementation of it availabl...

Roger that, sorry for the detour. Have opened a ticket on it: https://github.com/bryntum/support/issues/8309