ready

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

function ready;

Example

webix.ui({
  view:"list",
  data:[],
  ready:function() {
    // called after the component has been initialized
  },
});

Related samples

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
Back to top