Wrapping text in tree node item within DIV

Hi,

Thanks your very much for your response.



Tree supports multiline items, auto wrappiing can be enabled by

tree.enableMultiLineItems(true);



Is this function available in standard edition? Is there is any other solution to wrap the tree node text to avoid scroll bars in standard edition?



Thanks in advance,

Suresh

Functionality available only in pro version.�Technically the data from XML treated as HTML, so if it will contain “
” tags , it must made a text multiline in any case.�If necessary scrolls in tree can be disabled in dhtmlxtree.cssnext line � � .containerTableStyleRTL { direction: rtl; overflow : auto;can be replaced with� � .containerTableStyleRTL { direction: rtl; overflow-x:hidden; overflow-y: auto;