Premium support for our pure JavaScript UI components


Post by tobias.aires »

It is possible to move recurrenceEditor from reccurence tab to general tab? Similar to what recurring events on this scheduler example: https://bryntum.com/products/scheduler/examples/recurrence/


Post by tasnim »

I think it is possible.

You could disable taskEdit feature and enable eventEdit
Then, it should be working

https://bryntum.com/products/schedulerpro/docs/api/Scheduler/feature/EventEdit
https://bryntum.com/products/schedulerpro/docs/api/SchedulerPro/feature/TaskEdit

features : {
	taskEdit : false,
	eventEdit : true
}

Post Reply