Categories | Question details Back To List | ||
dhtmlxtabbar left tab writing label as vertically hi, we are using licensed version of dhtmlx tabbar=new dhtmlXTabBar("a_tabbar","left"); <?xml version="1.0"?> <tabbar> <row> <tab id="a1" width='220px' valign='bottom'>Test-1</tab> <tab id="a2" selected="1" width='220px'>Test-2</tab> </row> </tabbar> left tab name need appear as T e s t - 1 as first tab name and second tab as T e s t - 2 but its not writing. which property do we need to use (in XML and while creating vertical tabs) to write the tab name vertically. Answer posted by Alex (support) on Jul 15, 2009 01:07 You can try to use the following approach: ... Answer posted on Jul 15, 2009 05:40 thanks alex,
how to do the same when we use addtab method for tabbar ? Answer posted by Alex (support) on Jul 15, 2009 05:50 Probably the following one: tabbar.addTab("a1","<div style='width:1px'>T e s t - 1</div>","220px"); |