Click here to Skip to main content
15,884,472 members
Articles / Web Development / ASP.NET
Article

Loading a treeview to n levels

Rate me:
Please Sign up or sign in to vote.
2.98/5 (22 votes)
25 Mar 2008CPOL2 min read 88K   3K   51   14
A recursive method to load a treeview to n levels

Introduction

Treeviews are comonly used in many websites where different categories are required to display. A Tree structure may have n levels. This is why, a suitable piece of code may be required, that enables the binding upto n levels. Another example may be a directory structure like we have in windows.

Background

This chunk of code is efficient in a sense that it uses recursion. I have seen some snippets of code around internet where they include one or more columns in the database to correctly populate the treeview.

We define a recursive method as a method that calls it self until a certain condition becomes true. For example:

Image 1

The code above calculates the factorial of a number for example: factorial of 3 is 3 * 2 * 1. More information on recursion can be found here : Recursion

Using the code

Categories are generally designed in a unique manner, where one category has exactly one parent and one or more children. Thus we design our table with three columns that is NodeID, ParentID and NodeText where 'Node' stands for a category. '-1' can be choosen act as a ParentID for the root level Nodes. All other nodes having ParentID other than '-1' will exist under Root Level Nodes under their specific Parent Nodes.

NodeIDParentIDNodeText
0-1Asia
1-1Africa
2-1North America
3-1South America
4-1Europe
5-1Australia
6-1Antarcatica
70South Asia
87Pakistan
98Federal Area
109West
1110G 11
1211Sector 1

Here is the code that I am using to populate the tree.

Image 2

It includes a recusive function, that adds the nodes to n levels. The function GetData() is simply returning the child nodes of a parent node. You can use it like a select query or you can read all categories in the database at once and can make this function iterate on rows as I am doing for this sample code with ReadData().

The above code will produce the following treeview:

Image 3

Points of Interest

One can also use XML to store the data. In that case data will be read in a dataset or using a parsing mechanism depending upon the requirements. Remember that we have post back properties for the treeview control, so you will be able to navigate user to the required pages when a particular node is clicked.

License

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


Written By
Software Developer Marriala Technologies
Pakistan Pakistan
Muhammad Usman
Software Developer, M.sc(Computer)
Pakistan

Comments and Discussions

 
GeneralMy vote of 5 Pin
jakethepeg9327-Aug-13 17:28
jakethepeg9327-Aug-13 17:28 
QuestionMany Thanks for this gem... Pin
jakethepeg9327-Aug-13 17:28
jakethepeg9327-Aug-13 17:28 
I've been searching all afternoon for a solution like this and with a little manipulation this was perfect... Many Many Thanks for sharing this!!! Thumbs Up | :thumbsup:
All good things come to those who wait.

Questiongreat solution Pin
dela030428-Dec-12 10:12
dela030428-Dec-12 10:12 
Questionthanks Pin
coolnavjot3122-May-12 0:59
coolnavjot3122-May-12 0:59 
GeneralMy vote of 5 Pin
me bill gates16-Dec-10 8:08
me bill gates16-Dec-10 8:08 
Generalproblem in horizontal view Pin
skhurams5-Dec-10 20:46
skhurams5-Dec-10 20:46 
GeneralMy vote of 1 Pin
vickybond12327-Dec-08 1:54
vickybond12327-Dec-08 1:54 
GeneralRe: My vote of 1 Pin
mdmahmudkhan8-Apr-12 19:17
mdmahmudkhan8-Apr-12 19:17 
GeneralExcellent Pin
erikdraven9-Sep-08 6:30
erikdraven9-Sep-08 6:30 
Generalhello Pin
Aamir Mustafa28-Mar-08 3:24
Aamir Mustafa28-Mar-08 3:24 
GeneralSimple and smart Pin
Ricardo borges26-Mar-08 16:01
Ricardo borges26-Mar-08 16:01 
GeneralRe: Simple and smart Pin
M Usman27-Mar-08 2:02
M Usman27-Mar-08 2:02 
GeneralGoood Article Pin
Aamir Mustafa26-Mar-08 2:47
Aamir Mustafa26-Mar-08 2:47 
GeneralNice Article Pin
ryanoc33325-Mar-08 7:22
ryanoc33325-Mar-08 7:22 

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.