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

Hide TreeView Images

This article shows how to hide all TreeView Images - the Line Images, Plus and Minus signs. In this case Nodes are toggled by clicking on their text as the Minus and Plus Images are gone.

Line Images are hidden by setting the ShowLineImages property of RadTreeView to false.

Plus and Minus Images are hidden with CSS:

div.RadTreeView .rtMinus,
div.RadTreeView .rtPlus
{
    display: none;
}
div.RadTreeView .rtTop,
div.RadTreeView .rtMid,
div.RadTreeView .rtBot
{
    padding: 0;
}   
In this article