editable tabbar

hi,



as in dhtmlxgrid mygrid.iseditable(false).Is there any function which makes the tabbar disable completely .

Can you please explain what tabbar do you mean?
If you whant to disable navigation in grid by pressing “tab” button, you can do that using “onTab” event:
mygrid.attachEvent(“onTab”,function(){return false;})
If you want to disable all cells in grid to edit you can set not editable type to them:
mygrid.setColTypes(“ro,ro,ro”);
Or you can disable grid to edit with following command:
mygrid.setEditable(false);


Hello,


tabbar doesn’t provide methods to control content of its tabs.


You can show the transparent container over the tabbar. In this case tabbar will be not available.

so , i cant have acces to dhtml tabbar content . I just want to make the content non editable .


Tabbar doesn’t provide any method to control its content (to make it non-editable).


In case of iframe-based loading mode a window of tab content can be got by tabWindow(tab_id) method.


If you don’t use iframes you can use document.getElementById(id) to access the element.