Hi Hasan,
Syncfusion Greetings.
We have achieved your requirement by using actionBegin event of the scheduler. Please refer below sample.
if (args.requestType === 'toolbarItemRendering') {
const exportItem: ItemModel = {
align: 'Right', showTextOn: 'Both', prefixIcon: 'e-icon-add', cssClass: 'e-add', click: this.onAddClick.bind(this)
};
args.items.push(exportItem);
}
}
public onAddClick(): void {
this.scheduleObj.openEditor(this.scheduleObj.activeCellsData,'Add');
}
Regards,
M.Vinitha devi