Show full editor instead of Quick info

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


5 Replies 1 reply marked as answer

VD Vinitha Devi Murugan Syncfusion Team September 6, 2022 07:49 AM UTC

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.


https://www.syncfusion.com/downloads/support/directtrac/general/ze/EventwindowOnSingleClick1292139456


    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



Marked as answer

GA Gene Allen September 6, 2022 02:56 PM UTC

Perfect!  Works great!

Was this documented somewhere I just missed it?




VD Vinitha Devi Murugan Syncfusion Team September 7, 2022 08:57 AM UTC

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.


https://ej2.syncfusion.com/aspnetcore/documentation/schedule/how-to/open-event-editor-manually#open-editor-window-on-single-click



Regards,

Vinitha



GA Gene Allen September 8, 2022 02:30 AM UTC

Thank you again Vinitha!



VD Vinitha Devi Murugan Syncfusion Team September 9, 2022 04:44 AM UTC

Hi Gene,


You are most welcome 😊. Please let us know, if you need any further assistance.


Regards,

Vinitha


Loader.
Up arrow icon