How to show window in case of webix and angular 8 integration?

I integrate webix with angular 8. How do I show window on click of button in case of integraion?

The Webix window cannot be rendered in an HTML container, but they can be bound to the lifecycle of the Angular component:

  • ngOnInit for creating a window and assign the needed handlers
  • ngOnDestroy to destroy the window with other views

Unfortunately, we do not have a full example of implementation, but the following code at Gist illustrates how to init a window and then show it by selecting a row in the datatable (the same this.win.show() call can be assigned to a button click).
It actually extends the code from our basic Angular 8 demo, so you can just replace the original file in this demo to test the implementation.