Click here to Skip to main content
15,881,938 members
Articles / Web Development / ASP.NET

Adding custom attributes and applying CSS to nodes in a TreeView control

Rate me:
Please Sign up or sign in to vote.
4.76/5 (22 votes)
4 Feb 2007CPOL2 min read 85.4K   1.1K   29   5
Extending the TreeView control to customize nodes and add custom attributes.

Sample image

Introduction

This article will show how to extend the ASP.NET TreeView control to apply Cascading Style Sheets to tree nodes as well as add the functionality of storing custom attributes per node.

Background

There are lots of useful make-life-easy functionalities that the built-in ASP.NET TreeView control lacks that are very noticeable especially when you are working with third party components. Functionalities like adding custom attributes or properties to a node other then the node text and Value, a built-in data binding supporting auto-binding from a single self-referencing table with ID -> Parent ID relation, and adding a custom style or template to nodes or globally to a tree view.

Attributes and node customization are addressed in this article, and hopefully I will address auto-binding in a later article or at least give it a try!

Customizing Tree Nodes

Since we are changing the way the System.Web.UI.WebControls.TreeNode Text property is being rendered, the first thing we need to do is to create a class that inherits TreeNode and override the RenderPreText and RenderPostText methods. In the RenderPreText method, we write out a Div tag and add a class attribute, setting its value with the cssClass property.

C#
protected override void RenderPreText(HtmlTextWriter writer)
{
    writer.AddAttribute(HtmlTextWriterAttribute.Class, cssClass );
    writer.RenderBeginTag(HtmlTextWriterTag.Div);
    base.RenderPreText(writer);
}

In the RenderPostText method, we end the Div tag.

C#
protected override void RenderPostText(HtmlTextWriter writer)
{
    writer.RenderEndTag();
    base.RenderPostText(writer);
}

Adding Custom Attributes

In a certain type of scenario, you many need to store data specific to nodes that the TreeNode class does not provide. You can store any number of attributes in the collection as name/value pairs using the NameValueCollection collection.

C#
public NameValueCollection Attributes
{
    get 
    { 
        return this._Attributes;
    }
    set 
    { 
        this._Attributes = value; 
    }
}

Using the Code

C#
private CustomTreeNode CreateNode(string NodeText, string NodeStyle)
{
    CustomTreeNode oNode = new CustomTreeNode();
    oNode.Text = NodeText;
    oNode.cssClass = NodeStyle;
    oNode.Attributes["CustomAttribute1"] = "1";
    oNode.Attributes["CustomAttribute2"] = "2";
    oNode.Attributes["CustomAttribute3"] = "3";
    return oNode;
}

Simple create an instance of the CustomTreeNode class and set the cssClass or Attributes properties if applicable. I also provide a recursive function in the demo application that loops through the tree and displays node text and its relative attributes.

Points of Interest

I hope you find this article interesting and simple. I want to thank Danny Chen for discussing node customization which I found very useful in writing this article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Delcan Corporation
United States United States
Bassam Saoud is a software developer with more then 6+ years of experience. He has masters in Computer Science from American University of Technology and is currently doing Masters in Business Administration at Colorado Heights University. He started Programming with C++ and VB and now working with ASP.NET VB.NET/C#, SQL Server 2000/2005.

His interests are mainly politics, Basketball and Traveling.

Comments and Discussions

 
QuestionCan your way textend the winform treeview control? Pin
ly_he12-Jan-12 16:13
ly_he12-Jan-12 16:13 
Dear Saoud,
Your way that Adding custom attributes and applying CSS to nodes in a Treeview control can extend the ASP.NET Treeview control, it is great! My question is that this way can also used for winform treeview control or not?
Your sincerely
Lingyong He (ly_he@263.net)
Beijing, China
hope can hear you answer.
QuestionAttributes are not rendered in UI...are you missing something Pin
ranu mandan25-Dec-11 19:20
ranu mandan25-Dec-11 19:20 
GeneralWith CSSFriendly Adapters Pin
designit993-Feb-09 3:33
designit993-Feb-09 3:33 
GeneralNice article, some suggestions maybe Pin
rayback_25-Feb-07 23:01
rayback_25-Feb-07 23:01 
GeneralRe: Nice article, some suggestions maybe Pin
Bassam Saoud6-Feb-07 0:32
Bassam Saoud6-Feb-07 0:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.