onAfterRender

occurs immediately after the component has been rendered

void onAfterRender();

Example

some.attachEvent("onAfterRender", function(){
    //... some code here ... 
});

Details

The event fires each time the component is redrawn, not only after the component has been created.

To catch the moment of creation, supply it with webix.once() helper:

some.attachEvent("onAfterRender", webix.once(function(){ 
    console.log('called once after first rendering:'); 
});
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix js frameworks and page of lists in javascript product.