Premium support for our pure JavaScript UI components


Post by dphilip »

We can reschedule a regular event by https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/model/EventModel#function-setStartDate OR https://bryntum.com/products/schedulerpro/docs/api/Scheduler/view/SchedulerBase#function-scheduleEvent

However I am unable to reschedule a parent event using the above functions.

How do I reschedule parent events in the code?


Post by marcio »

Hey dphilip,

You can directly change the startDate like this

schedulerPro.eventStore.records[0].startDate = new Date(2022, 00, 04)

I tested on our demo here https://bryntum.com/products/schedulerpro/examples/nested-events-configuration/

Best regards,
Márcio


Post Reply