onViewShow of ui.tabview, Events Webix Docs

StartAPI Referenceui.tabviewEvents

fires when any hidden view is shown

void onViewShow();

Example

$$("button1").attachEvent("onViewShow", function(){
    // your handler here
});

Details

The event is triggered when any hidden view is shown, including multiview cells and accordion items.

Back to top