Hello,
Can TreeView nodes have more than one line of text? I'm asking because I have about 240px for a TreeView and some nodes are preety long so vertical bar is appearing. is there any way to make long text in nodes to split into two lines?
Setting CSS:
only "cuts" TreeView and hides vertical bar and I think this is not a good solution.
Thanks
EDIT: OK. I've found solution for my problem:
Can TreeView nodes have more than one line of text? I'm asking because I have about 240px for a TreeView and some nodes are preety long so vertical bar is appearing. is there any way to make long text in nodes to split into two lines?
Setting CSS:
| .RadTreeView |
| { |
| overflow: hidden !important; |
| } |
Thanks
EDIT: OK. I've found solution for my problem:
| .RadTreeView { |
| whitewhite-space: normal !important; |
| overflow: hidden !important; |
| } |