Skip to content

ready

the event handler is called just after the component has been completely initialized

let ready: function
webix.grid({
ready:function() {
// called after the component has been initialized
},
});

also check the next samples:

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.

Articles