Add/Edit Dialog issue with Popup CalendarView

I am running into an issue where we popup a new window using the component "angular-popout-window" and the add/edit dialog will only show on the parent/calling page.  Is there a way to override the default modal dialog for add/edit to get this to pop on the child window?



Any help would be appreciated!

1 Reply 1 reply marked as answer

HB Hareesh Balasubramanian Syncfusion Team March 5, 2021 10:09 AM UTC

Hi Sean, 

Greetings from Syncfusion Support..! 

We have validated your shared query at our end and suspect that your requirement is to “prevent our default editor window of the Scheduler because you are using your own angular-popout-window“ and for that, we have prepared a sample using popupOpen event of the Scheduler, which can be viewed from the following link. 


  public onPopupOpen(args: any): void { 
    if (args.type == "Editor") { 
      args.cancel = true; // To prevent the default editor window of the Scheduler 
    } 
  } 

Kindly try the above solution and if we misunderstood your requirement, kindly share more details like the use case scenario/ /video demo of your requirement/Scheduler rendering code snippets of your requirement which would help us to provide a prompt solution at the earliest. 

We will happy to assist you..! 

Regards, 
Hareesh 


Marked as answer
Loader.
Up arrow icon