Our pure JavaScript Scheduler component


Post by Gopika »

Hi Team,

Is it possible to have recurring UI in custom editor.

Thanks and regards


Post by sergey.maltsev »

Hi, Gopika!

We have no ready to use example for this but you could implement any UI with framework's components by yourself.
You could use https://bryntum.com/docs/scheduler/#Scheduler/view/recurrence/RecurrenceEditor from your custom editor to show RecurrenceModel editor.

Also check components starting with Recurrence word, they would help you.

Alternate wait is customize https://www.bryntum.com/docs/scheduler/#Scheduler/feature/EventEdit feature which already implements https://www.bryntum.com/docs/scheduler/#Scheduler/feature/mixin/RecurringEventEdit mixin and add extra items there on your need.

If you have license please check RecurringEventEdit mixin source code for more info how you could implement recurring UI with your custom editor.

If you need further assistance for implementing new features please check our Professional Services page for more information: https://www.bryntum.com/services/


Post by GopNovel »

Thank you so much Sergey.
Will go through the links you have mentioned. Yes got a license now.


Post by GopNovel »

Hi Sergey, I was trying to put the recurrence editor in Custom editor.
I was able to show the recurrence editor. But when I save the recurring it throws error.

I saw something like below, but not sure where to/how to use it

const recurrence = new RecurrenceModel({ frequency : 'DAILY', interval : 5 });
event.setRecurrence(recurrence);

Attaching the error I get.

Attachments
customEditor.gif
customEditor.gif (934.51 KiB) Viewed 635 times

Post Reply