I need to show the full editor instead of the quick info dialog when adding an event.
I figured it would be straight forward, but can't seem to figure it out.
thank you,
Gene
Hi Gene,
Greetings from Syncfusion Support.
You can open a dialog on single click using popupOpen event of our scheduler with below code. We have prepared sample for your reference.
function onPopupOpen(args) {
if (args.type == "QuickInfo") {
args.cancel = true;
var currentAction = args.target.classList.contains("e-work-cells") ? "Add" : "Save";
let scheduleObj = (document.querySelector(".e-schedule")).ej2_instances[0];
scheduleObj.openEditor(args.data, currentAction);
}
}
Kindly try with the above sample and get back to us if you need any further assistance.
Regards,
Vinitha
Perfect! Works great!
Was this documented somewhere I just missed it?
Hi Gene,
Thanks for your update.
We are happy that our solution fulfills your requirement.
Yes, our UG contains a description of the functionality you requested. Refer to the link below for more information.
Regards,
Vinitha
Thank you again Vinitha!
You are most welcome 😊. Please let us know, if you need any further assistance.
Regards,
Vinitha