5,426,531 members and growing! (15,284 online)
Email Password   helpLost your password?
Web Development » Custom Controls » General     Intermediate

Implementing IHierarchy Support Into Your Custom Collections

By spiegdon

Brief walk-through on decorating your custom collections with the IHierarchy family of interfaces to support databinding.
C# 2.0, C#, Windows, .NET, .NET 2.0, ASP.NET, VS2005, Visual Studio, Dev

Posted: 17 Jul 2007
Updated: 17 Jul 2007
Views: 18,949
Bookmarked: 31 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
15 votes for this Article.
Popularity: 5.41 Rating: 4.60 out of 5
1 vote, 6.7%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
2 votes, 13.3%
4
12 votes, 80.0%
5

Screenshot of the final output.

Introduction

This quick tutorial will hit on the major features of the IHierarchicalDataSource provided by ASP.NET 2.0. Throughout I take a common set of data (a storefront listing of categories) in the form of a strongly typed generic list and entity and bind it together using the IHierarchy family of interfaces demonstrating how to turn any custom collection into a useful data binding tool.

Background

Displaying hierarchical data on the web is not a simple task, as you may already know if you have ever tried to bind a custom collection of hierarchical data to a standard ASP.NET TreeView control. No matter what the original shape of the data is, it is quite a pain to loop through and bind using the AddNode methods provided. You have to recursively look up the parent controls, ensure your data is sorted, etc. Overall it is a pretty big pain in the [Insert Bleep Here]! Hopefully after reviewing the following, you will find it much easier to extend your custom collections with this technology and remove all your nested data headaches!

Enjoy!

Using the code

I have tried to package this up as seamless as possible. Open'er up in Visual Studio 2005 and you should have a file path ASP.NET Web Site. I have one file for each class object (I guess that is the "team developer" in me) and a static method in the common class for quick sample data tucked nicely into a strongly typed generic list implementation.

Viewing the Default.aspx page should yield a tree view of a computer store product category TreeView demonstrating the code below.

On with the show...

To start with, we need a basic entity and collection, mine looks similar to this:

using System;
using System.Collections.Generic;

public class Category {

   private int _categoryId;
   private int _parentId;
   private string _name;
   
   public int CategoryId {
      get { return _categoryId; }
      set { _categoryId = value; }
   }
   
   public int ParentId {
      get { return _parentId; }
      set { _parentId = value; }
   }
   public string Name {
      get { return _name; }
      set { _name = value; }
   }

   public Category(int categoryId, int parentId, string name) {
      _categoryId = categoryId;
      _parentId = parentId;
      _name = name;
   }   
}

public class CategoryCollection : List<Category> {

   public CategoryCollection()
      : base() {
   }
}

Implementing IHierarchyData on the Entity

In order to tell the CLR that your collection has hierarchical data, it in fact must be! Let's add that by adding the System.Web.UI namespace along with implementing the IHierarchyData interface and its required members as shown here:

using System;
using System.Collections.Generic;
using System.Web.UI;

public class Category : IHierarchyData {
   ...

   #region IHierarchyData Members

   // Gets an enumeration object that represents all the child 

   // nodes of the current hierarchical node.

   public IHierarchicalEnumerable GetChildren() {

      // Call to the local cache for the data

      CategoryCollection children = new CategoryCollection();

      // Loop through your local data and find any children

      foreach (Category category in Common.GetCategoryData()) {
         if (category.ParentId == this.CategoryId) {
            children.Add(category);
         }
      }

      return children;
   }

   // Gets an IHierarchyData object that represents the parent node 

   // of the current hierarchical node.

   public IHierarchyData GetParent() {
      
      // Loop through your local data and report back with the parent

      foreach (Category category in Common.GetCategoryData()) {
         if (category.CategoryId == this.ParentId)
            return category;
      }

      return null;

   }

   public bool HasChildren {
      get {
         CategoryCollection children = GetChildren() as CategoryCollection;
         return children.Count > 0;
      }
   }

   // Gets the hierarchical data node that the object represents.

   public object Item {
      get { return this; }
   }

   // Gets the hierarchical path of the node.

   public string Path {
      get { return this.CategoryId.ToString(); }
   }

   public string Type {
      get { return this.GetType().ToString(); }
   }

   #endregion   
}

The GetChildren() and GetParent() methods are where the magic really takes place. These two internal methods power the hierarchy definition and allow the controls to link them appropriately.

Implementing IHierarchicalEnumerable on the Collection

For the code immediately above to work, the method GetChildren() is counting on us handing back an implementation of IHierarchicalEnumerable.

Implementing this interface is a simple task of coding one method (GetHierarchyData()) that will ensure proper object typing within the collection as shown below:

public class CategoryCollection : List<Category>, IHierarchicalEnumerable {
   ...
   
   #region IHierarchicalEnumerable Members

   // Returns a hierarchical data item for the specified enumerated item.

   public IHierarchyData GetHierarchyData(object enumeratedItem) {
      return enumeratedItem as IHierarchyData;
   }

   #endregion
}

Finally... Some Output!

To see the results, simply create a new ASPX page and add a ASP:TreeView control to it. In code-behind, the following snippets will bind the results from your newly decorated collection to the tree view and organize it within the hierarchy you defined.

ASP.Net
----------------------------------------------------------
<asp:TreeView ID="uxTreeView" runat="server" />

Code Behind
----------------------------------------------------------
protected void Page_Load(object sender, EventArgs e) {

   if (!IsPostBack) {
            
      // Local cache of category data

      CategoryCollection collection = Common.GetRootCategories();

      // Bind the data source to your collection

      uxTreeView.DataSource = collection;
      uxTreeView.DataBind();
   }
}

Now that your collection and entity are all hyped-up on interfaces, you can use them again and again on hierarchy displaying controls natively.

Points of Interest

If anyone can answer the question as to why this is hidden away in the System.Web.UI namespace, I would love to hear it! I cannot imagine this having "web only" requirements, but I have not yet tried it in a Windows application.

In the code download, I have also included an implementation of IHierarchicalDataSource and HierarchicalDataSourceView for those of you who prefer to declaratively bind the data on the ASPX side with DataSource controls.

History

  • Wednesday, July 18, 2007 - Initial version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

spiegdon


Scott Piegdon is a Software Development Manager for a hosted ERP (Enterprise Resource Planning) application. He has a wonderful wife, and two children. He loves to develop applications that others find not only easy to use and pleasing to the eye, but also provide un-surpassing functionality. He has been developing websites for over 10 years, and programming professionally for 7 of them. His experiences span anything from a BNC Pier-to-Pier to a 10 office wide area network across phone company barriers. He has worked with database engines from Access to Oracle, and programming languages from BasicA to C# 2.0 through ASP.Net.

"Hopefully I can pass along some of the insight and knowledge I have acquired over the years to those curious enough to read it." - Scott Piegdon
Occupation: Web Developer
Location: United States United States

Other popular Custom Controls articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 33 (Total in Forum: 33) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralExtending to HierarchicalSqlDataSourcememberAndersoc2:22 24 Apr '08  
GeneralYa butt ...membermike.griffin@entityspaces.net15:41 5 Nov '07  
GeneralRe: Ya butt ...memberspiegdon17:39 17 Nov '07  
GeneralThanks!memberSummer_son9:36 3 Nov '07  
GeneralSQL DB DataSourcememberjeffb4214:51 30 Aug '07  
GeneralRe: SQL DB DataSourcememberspiegdon18:08 30 Aug '07  
AnswerRe: SQL DB DataSourcememberspiegdon14:58 27 Nov '07  
QuestionHow to set up the filesmemberandrewward3:27 13 Aug '07  
AnswerRe: How to set up the filesmemberrodchar3:56 16 Aug '07  
GeneralRe: How to set up the filesmemberandrewward4:10 17 Aug '07  
GeneralRe: How to set up the filesmemberspiegdon18:10 30 Aug '07  
GeneralWithDataSource Possible issuememberrodchar10:05 8 Aug '07  
GeneralRe: WithDataSource Possible issuememberspiegdon18:08 30 Aug '07  
GeneralRe: WithDataSource Possible issuememberMember 44244406:48 23 Apr '08  
GeneralRe: WithDataSource Possible issuememberAndersoc7:23 23 Apr '08  
Generalorganizational chartmemberrodchar10:02 6 Aug '07  
GeneralRe: organizational chartmemberspiegdon13:36 6 Aug '07  
GeneralRe: organizational chartmemberrodchar3:49 7 Aug '07  
AnswerRe: organizational chartmemberspiegdon14:55 7 Aug '07  
GeneralRe: organizational chartmemberrodchar6:21 8 Aug '07  
Generalediting the nodesmemberrodchar11:19 26 Jul '07  
GeneralRe: editing the nodesmemberspiegdon13:43 26 Jul '07  
GeneralRe: editing the nodesmemberrodchar14:05 26 Jul '07  
Generalkey concepts behind the DataSource control (newbie alert)memberrodchar6:12 24 Jul '07  
GeneralRe: key concepts behind the DataSource control (newbie alert)memberGuerven18:56 24 Jul '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Jul 2007
Editor: Deeksha Shenoy
Copyright 2007 by spiegdon
Everything else Copyright © CodeProject, 1999-2008
Web13 | Advertise on the Code Project