ready
the event handler is called just after the component has been completely initialized
let ready: function
Example
Section titled “Example”webix.grid({ ready:function() { // called after the component has been initialized },});
also check the next samples:
Details
Section titled “Details”The ready
event handler will be called only once after the initial data parsing. Dynamic data loading won’t trigger the handler. This is a good place for post-initialization code. To track not only initial but any subsequent data loading, you can handle the onAfterLoad event.
See also
Section titled “See also”Articles