Search found 11 matches

Thanks for the reply pmiklashevich.

I didn't really get what your suggestion was. Should I remove the two scheduler configs into two js files?
Please find the attached sample file.

BottomScheduler.js is the out-of-the-box file in the react drag-between-schedulers example.

* When WorkingTime prop is commented, multiple schedulers works fine
* When multiple schedulers are not there Working time works fine

Regards,
Asat
Hi, I am looking into the a React integration with Bryntum Scheduler and trying to understand how everything is working together. I have followed how schedulerClass has been used tp extend the scheduler and use with multiple schedulers together. Now I want to limit the working days/time as in workin...
Oh. new Date(2019, 1, 1, 7) is in February. Are months starting from zero?

new Date(2019, 0, 1, 7) worked fine.

Sorry to bother but where can I find these information. https://www.bryntum.com/docs/scheduler/ ... ld-endDate say the date should be in ISO8601.
Hi, scheduler.features.resourceTimeRanges.store.getAt(0).setStartDate(new Date("2019-01-01T07:00:00:00"), true); or scheduler.features.resourceTimeRanges.store.getAt(0).setStartDate(new Date(2019, 1, 1, 7), true); doesn;t seems to be working in the Resource time ranges demo. The Time range...
Thanks Pavel. I'll have a look.
Hi, I checked all the examples (i think), but couln't find a one which load data whille scrolling horizontally . The configuraion example have different view presets but it doesn't load the events when we change the preset. One of the threads mentioned infinite scrolling will be coming next year but...
Hi, I am a newbie and while looking for documentation and also in these forums, I am getting confused when people talking about ExtJs Scheduler/Bryntum Scheduler and Sencha stuff. As I read, Mats has been an active member of Sencha community and it seems to have a big influence on the scheduler whic...
@mats Thanks. If I get you correctly, I should still loar/parse data into the store befor using it. Is it the standard and recommended way the scheduler works. Since our APIs are XML based I see an additionaly cost in doing that.

I am new to this, so please bare with me for basic quesions.