fires each time a subview is rendered
item | object | the item that a subgrid is rendered for |
node | HTMLElement | the HTML node of the subview |
Available only in PRO Edition
$$("datatable1").attachEvent("onSubViewRender",function(item,node){
webix.message("A subview is rendered");
});
The event fires for the subview that is opened and for the already opened subviews.
Back to top