|
Title: How to make a node break-word? Post by: Garrick on July 23, 2014, 06:58:38 PM I make a basic tree and the children node string is too long then I put the following style but it doesn't work.
Code: <div id='sidebar2'> Title: Re: How to make a node break-word? Post by: stworthy on July 24, 2014, 01:19:01 AM The tree node has a fixed height. You can't break the node text. The alternative solution to solve this issue is to limit the node width and show a tip message when hovering this node.
Code: <li> Also, you can use the treegrid instead, which has 'nowrap' property that allows you break a line in a node. |