Hi Victor,
Thank you for contacting Syncfusion support.
We have prepared the sample for your requirement which can be download from the below location.
When a cell is clicked, CellClick event will be raised where we have customized the quick window as per your requirement. Kindly refer the below code example used in the sample.
<Code>
function OnCellClick(args) {
$(".e-detailedapp").addClass("disable");
var obj = $("#Schedule1").data("ejSchedule");
$(obj._quickAppointWindow.find('.subject')).focus(function (args) {
obj._quickAppointWindow.find('.subject').val("Static Message").addClass("disable");
});
}
</Code>
Regards,
Nevitha