Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Seetharaman Srinivasan on Nov 06, 2008 12:38
open dhtmlx forum
tabbar onTabLoaded


Can you give me sample code to use

onTabLoaded event

I want to hide the tabbar after it is loaded
Answer posted by Support on Nov 10, 2008 09:04
onTabLoaded event occurs when content loaded in one of tabbar's tab
mytabbar.setOnTabContentLoaded(function(id){
    //any code here, will be called after tab content loaded
});


If you need to catch the moment when tabbar finish config loading from external js file, it can be done as 
mytabbar.setOnLoadingEnd(function(){
   //any code here
});