Hi Marios,
Greetings from Syncfusion Support.
We have validated your requirement “Connecting two scheduler together” and we recommend you to use the same datasource to both schedulers and call the refreshEvents method in actionComplete event of both schedulers to achieve your requirement. For more reference, please check the below code snippet.
Schedule 1:
eventSettings: { dataSource: data },
actionComplete: function (args) {
if (
args.requestType === 'eventChanged' ||
args.requestType === 'eventCreated' ||
args.requestType === 'eventRemoved'
) {
scheduleObj2.refreshEvents();
}
}
Schedule 2:
eventSettings: { dataSource: data },
actionComplete: function (args) {
if (
args.requestType === 'eventChanged' ||
args.requestType === 'eventCreated' ||
args.requestType === 'eventRemoved'
) {
scheduleObj1.refreshEvents();
}
},
Also, you can find the same in the below sample.
Kindly check the above sample and get back to us if you need any further assistance.
Regards,
Vengatesh