ready

webix.ready(code)

webix.ready helper.

Please look into the linked official documentation.

External references

Official documentation page.

Code

1
2
3
4
webix.ready = function(code){
    if (this._ready) code.call();
    else this._ready_code.push(code);
};