Categories | Question details Back To List | ||
I have configured the tree like this treeActivities.enableAutoHeight
treeActivities.enableAutoHeight(true); 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 |