I have configured the tree like this treeActivities.enableAu



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 ?


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