Hi Isabelle,
Greetings from Syncfusion Support.
We have validated your reported query “how can i manage the quick Info template - that just EDIT is available but not DELETE?” at our end. We have achieved your requirement with the help of popupOpen event of our scheduler with below code and for the same we have prepared the below sample.
onPopupOpen: function (args) {
if (args.type === "QuickInfo") {
var deleteEle = args.element.querySelector(".e-event-popup .e-delete");
if (deleteEle) {
deleteEle.ej2_instances[0].disabled = true;
}
}
},
Kindly try with the above sample and get back to us if you need any further assistance.
Regards,
Vinitha