Search found 2540 matches

Hi! timeAxisHeaderMenuBeforeShow event works but docs refer to old timeAxisHeaderContextMenuBeforeShow . Please update. https://bryntum.com/products/schedulerpro/docs/api/Scheduler/feature/TimeAxisHeaderMenu#event-timeAxisHeaderContextMenuBeforeShow https://bryntum.com/products/schedulerpro/docs/api...

Hi! It looks like arguments of scheduleMenuItem event are wrong (probably a copy-paste from eventMenuItem).

https://bryntum.com/products/schedulerpro/docs/api/Scheduler/feature/ScheduleMenu#event-scheduleMenuItem

"date" is missing for sure.

"eventRecord" makes no sense.

Hello! In SchedulerPro the EventCopyPaste feature doesn't work as I expect it to. If scheduler's set of records is updated and the copied event is not longer scheduled, the fields related to the time and some other fields are gone. I expect copied event to be immutable and it is possible to add the ...

The problem is that in the sources (CoreEventMixin.ts) the duration field has no default value.
This should fix the problem:

{ name : 'duration', type : 'number', defaultValue: 1 },
Hi! Please follow the steps to repro: Go to a demo page Add createEventOnDblClick config: createEventOnDblClick: { useEventModelDefaults: true, }, Double-click to create a new event See runtime exception: schedulerpro.module.js?464505:10 Uncaught (in promise) RangeError: Maximum call stack size exce...
TypeScript version in the project I work on doesn't support decorators :) But nonetheless I will save your advice for further reference. Meanwhile I have found a workaround. If I call await eventRecord.setAsync('foo', value) then model fields are recalculated and task editor calls the bar's getter t...

It reminds me this problem I replied to 2.5 years ago: viewtopic.php?p=71754#p71754
I will try my own advice to use readOnly instead.

Hi! Found a bug: Scheduler Pro demo: https://bryntum.com/products/schedulerpro/examples/resourcehistogram/ Add a new field to task editor and map it to an existing model field using the "name" prop. Make this field disabled. See the field is active in the Task Editor. If you remove "n...

Thanks, I'll check it out!