Click here to Skip to main content
Click here to Skip to main content

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

By , 4 Feb 2007
 

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.

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.

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.

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

Using the Code

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)

About the Author

Bassam Saoud
Software Developer (Senior) Delcan Corporation
United States United States
Member
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionCan your way textend the winform treeview control?memberly_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 somethingmemberranu mandan25 Dec '11 - 19:20 
GeneralWith CSSFriendly Adaptersmemberdesignit993 Feb '09 - 3:33 
GeneralNice article, some suggestions maybememberrayback_25 Feb '07 - 23:01 
GeneralRe: Nice article, some suggestions maybememberBassam Saoud6 Feb '07 - 0:32 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 4 Feb 2007
Article Copyright 2007 by Bassam Saoud
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid