Hello-
I currently have this using XML, However I want to use a default
for my onload content and have tabs available to create calls for external data. Can I do that, and if so how?
Hello-
I currently have this using XML, However I want to use a default
Did you mean that tabbar should be used without content zone ?
It is possible. You can disable content zone using enableContentZone method. And set onSelect handler for tabs:
function my_func(idn,ido){
/your code here/
return true;
};
tabbar=new dhtmlXTabBar(“a_tabbar”,“top”);
…
tabbar.setOnSelectHandler(my_func);
tabbar.enableContentZone(false);