delays a view from initializing at runtime
config | object | the view configuration |
webix.ui.delay({
view:"window",
...
});
The method is similar to ui. The difference is that ui creates the view immeadiately, while webix.delay initializes the view just when it will be requested by the $$('view_id') or webix.$$ method.
Back to top