How do a disable scroll bars for a tree? is there an alterna

How do a disable scroll bars for a tree?

i tried using tree.obj.style.overflow = “hidden”; but i get an error :



tree.obj has no properties

[Break on this error] tree.obj.style.overflow = “hidden”;





is there an alternative for obj.style.overflow in grid?


You can comment it directly in CSS file of tree



dhtmlxtree.css
.containerTableStyle { overflow : auto;     <=  this is it
       position:relative; top:0; font-size : 12px;}



or by js command as



tree.allTree.style.overflow=“hidden”;