Hi Ronan,
Syncfusion greetings.
We have prepared the below sample as per your requirement, kindly refer it.
Kindly refer the below link to disable the quick popup.
oncellClick(args) {
if (this.firstClick == '') {
this.firstClick = args
} else {
this.secondClick = args;
let appointment = {
Id: this.id++,
Subject: 'New Event',
StartTime: this.firstClick.startTime,
EndTime: this.secondClick.endTime
};
this.scheduleObj.addEvent(appointment);
this.firstClick = '';
this.secondClick = '';
}
}
Regards,
Karthi