Webix Jet $windows

is there an analogue of old $windows property in new Jet? or do we have to initialize them on init and destruct on destroy?

+1

$window was deprecated in favor of direct initialization, as it requires minimal coding and allows more flexibility

or do we have to initialize them on init and destruct on destroy?

You need not manually destroy them, just use

init(){
  this.ui(window_config);
}

this.ui works similar to webix.ui but will destroy window object automatically when master view is destroyed.

Also, starting from Jet 1.0.6 you can create JetViews with window as top control

https://forum.webix.com/discussion/31629/jet-1-0-insert-a-jetview-into-another-jet-view-in-a-window#latest

Thanks a lot, Maksim!