Search found 68 matches

Dropping an event outside the browser window causes the drag operation to get "stuck". After this I cannot do any other event drag operations. It only happens if you drop it outside the window and the scheduler is scrolling. I can confirm the drag is stuck by checking window.scheduler.feat...
What exactly should be done to reproduce the issue? Please post steps to reproduce with expected and actual results. I used your code snippet and see nothing from described above, unfortunately. Open https://bryntum.com/examples/scheduler/infinite-scroll/ Replace all code with import { Scheduler, D...
When I drag create and save an event with the EventEdit feature it reverts focus to the first visible event on my scheduler. This then seems to scroll focused event into view and also change the time axis start + end. I can reproduce similar issue when editing an event in our scheduler. Also when I ...
Hi, I have infinite scroll enabled and when I'm drag creating, resizing, or moving an event to the end of the time axis, which loads a new dataset via crud manager, the event I was dragging disappears or is not dropped where it should be. Reproducable using https://www.bryntum.com/examples/scheduler...
I have a store with a grouping + filters. Now I want to retrieve all records (including the ones filtered out) but I'm only getting the non-filtered records, basically the same as store.records. When I remove the grouping, allRecords does return all records in my store. Is this a bug? Looking at the...

Sorry, I was overriding the defaults which is why it was not working, my bad lol.

Column is a model, so the correct way to define default values is: class ColorColumn extends Column { static get type() { return 'color'; } static get defaults() { return { sortable(rec1, rec2) { console.log(1); return rec1.name < rec2.name ? -1 : 1; } }; } defaults should return an object. Sorry t...

This issue is still happening in 4.3.2. Page fully freezes and never recovers. Scheduler load mask is gone but does not show any events.
Initial load is fast and works fine, shifting the scheduler which loads new data freezes the page.

I'm trying to create a custom column and set a custom sorter, but it seems like it doesn't work. If I retrieve the column from the ColumnStore the sortable property = {} (just an empty object). What does seem to work is setting "sortable" to undefined and then setting my custom sorter. I c...
Hello. We do not allow to configure layout class. Instead you can customize layout fn (and only in Scheduler Pro). You can extract applyLayout or similar method from your layout class and provide it as a config. Please refer to this doc article for more info: https://bryntum.com/docs/scheduler-pro/...