ready¶
webix.ready(code)¶webix.ready helper.
Please look into the linked official documentation.
Referenced by¶
- helpers
debug_ready(),locale(),scrollSize().- mixins
xml(),SelectionModel(),Touch(),UIManager().
External references¶
Code¶
1 2 3 4 | webix.ready = function(code){
if (this._ready) code.call();
else this._ready_code.push(code);
};
|