returns dhtmlXTabBarCell instance (tabbar's tab)
id | string|number | the tab id |
dhtmlXTabBarCell | dhtmlXTabBarCell instance |
var myTabbar = new dhtmlXTabBar("parentId");
myTabbar.addTab("a1", "Rage", null, null, true);
myTabbar.addTab("a2", "Motorhead");
// getting tab
var tab = myTabbar.tabs("a1");
// attaching something
var myGrid = tab.attachGrid();
// the same but shorter
var myGrid = myTabbar.tabs("a1").attachGrid();
Used to attach content, menu/toolbar/status, show/hide progress, perform some tabs operations.
Please, check dhtmlXTabBarCell API.
added in version 4.0
Back to top