Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by RMiller on Jul 21, 2009 08:58
open dhtmlx forum
Tabbar - get object reference to Tabbar after HTML create

I am instantiating tabbar as HTML and wish to then use javascript to modify behaviors not exposed in HTML construction (e.g. removing the scrollbars). getElement to the container div ID does not seem to do it (not surprised).

Thoughts?

Thank you.
Answer posted by Alex (support) on Jul 22, 2009 02:02

You can try to use the following approach to set automatic sizes for tabbar:

 <div id="a_tabbar" onbeforeinit="setsizes()" class="dhtmlxTabBar" imgpath="..." style="width:100px; height:100px;" ...>... </div>
<script>

function setsizes(){
  a_tabbar.enableAutoSize(true,true)
 }