Opening a Custom Pop-up instead of default pop-up on clicking cell in Schedule Control

Hi Team,

On clicking on a cell in a Default Pop-up opens up, Instead of this can I have an Custom pop-up on clicking a cell?


1 Reply 1 reply marked as answer

VM Vengatesh Maniraj Syncfusion Team March 9, 2022 09:37 AM UTC

You can open your custom popup by disabling the default one in the popupOpen event like below. 
  
 public onPopupOpen(argsPopupOpenEventArgs): void {
    if (args.type === 'QuickInfo') {
      args.cancel = true;
      /// You can open your custom popup here
    }
  }
  
  
Sample: https://stackblitz.com/edit/angular-vvozcn?file=app.component.ts 


Marked as answer
Loader.
Up arrow icon