public openWindow()

in projects/kendo-ui-dialog-ngcc/src/app/app.component.ts [35:48]


  public openWindow() {
    const window: WindowRef = this.windowService.open({
      title: 'My Window',
      content: 'My Content!',
      width: 450,
      height: 200
    });

    window.result.subscribe((result) => {
      if (result instanceof WindowCloseResult) {
        console.log('Window was closed!');
      }
    });
  }