Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by andreea on May 15, 2008 07:01
open dhtmlx forum
I have configured the tree like this treeActivities.enableAutoHeight


I have configured the tree like this

treeActivities.enableAutoHeight(true);
treeActivities.objBox.style.overflow='hidden';

the result is: both the horizontal and the vertical scrollbars are disabled, but i need only the horizontal scroll bar to be disabled, I want to still see the vertical one . What should I do ?

Answer posted by Support on May 15, 2008 07:22

If you need to disable only horizontal you need to use

 treeActivities.enableAutoWidth(true);

or

treeActivities.objBox.style.overflowX='hidden';

you need not use both commands, just one of them