Check documentation for the latest version of dhtmlxSuite getId DHTMLX Docs

getId

returns the id of a tab

string|number getId();
string|numberthe tab's id

Example

myTabbar.forEachTab(function(tab){
    var id = tab.getId();
});

Back to top