I want to disable the default form and wants to open a form that was created by me

Hello, syncfusion team,

I am developing some project using the syncfusion sheduler. I need the solution for this.


How can I able to disable the default ones that was provided by syncfusion instead of that I want to open the form that was created by me.



instead of this one, I want to open the form that was created by me as a modal .



I want to totally disable this feature, I don't have a need for this.



My form looks like this.I have the save and delete things in my form  itself.



Thanks in advance

Happy Hacking 

Naveen Karthik


2 Replies

SK Satheesh Kumar Balasubramanian Syncfusion Team April 5, 2022 11:23 AM UTC

Hi Naveen,

 

You can use popupOpen event to achieve your requirement.

 

 

index.js:

  onPopupOpen(args) {

    if (args.type === 'QuickInfo' || args.type === 'Editor') {

      args.cancel = true;

      // You can open your customized dialog

    }

  }

 

Kindly try the above sample and let us know if this meets your requirement.

 

Regards,

Satheesh Kumar B



JS Juan Samano April 22, 2022 03:17 PM UTC

Hi Naveen


Loader.
Up arrow icon