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