New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Wrapping Node Text

RadTreeView does not support text-wrapping by default. However, you can use one of the following approaches to accomplish the task:

  • Add line breaks to the text of the TreeNodes:

    <telerik:RadTreeNode runat="server" Text="Root<br>Node"/> 
    
  • To wrap all TreeNodes' Text add the following style to the page:

    #RadTreeView1 div
    {
    white-space: normal;
    }
    

    If the TreeView resides in a naming container, you can get the name of the div tag from the HTML output of the page.

Another way of applying the style is putting the style directly to the TreeView or TreeNode definition like this:

<telerik:RadTreeView RenderMode="Lightweight" ID="RadTreeView1" runat="server" Style="white-space: normal;" />
<telerik:RadTreeNode runat="server" Text="Root Node" style="white-space: normal;">
In this article