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

A Hierarchical Repeater and Accessories to Match

Rate me:
Please Sign up or sign in to vote.
4.86/5 (10 votes)
1 Aug 2006CPOL4 min read 79.6K   635   35   25
A hierarchical Repeater control.

Introduction

I was working on a solution where there was a need to render sitemap data purely using DIVs. Upon initial coding, I tried to use the standard TreeView controls such as the ASP.NET TreeView and other third party controls. But none of them would allow for the custom rendering logic this project required. Most treeview or tree controls implement their own rendering logic that will break your design rules. Some times there is no "can't we just use what is available?", and when all else was exhausted, I just coded my way through it!!!! Nesting the Repeater would make sense, but coding this would get ugly since it was unknown how deep each tree was. Traversing the data in the Render method was the final solution taken. (Now try to get your HTML guy to fix the styling on that :-)).

After the solution was done, I decided to build a HierarchicalRepeater control using ASP.NET 2.0's HierarchicalDataBoundControl base class and allowing for total customization of the HTML styling and layout of hierarchical data, rather than the approach of overriding the Render method of the control used.

So I had my objective, but where to get started?

Here is a listing of problems that I wanted to solve in building this control:

  • Heck write my first CodeProject article.
  • Allow for complete control of the rendering logic in templates.
  • Ability to define multiple templates at each depth within a hierarchical structure.
  • Allow for DataBinding expressions:
  • ASP.NET
    <%#Eval("SomeProperty")%>
  • Create a hierarchical data structure using Generics that will allow a developer to define any object as a hierarchical using the IHierarchicalEnumerable and IHierarchyData interfaces.

The Structure of the HierarchicalRepeater Control

I started by defining a template infrastructure that will allow for hierarchical data to be iterated:

ASP.NET
<asp:SiteMapDataSource ID="SiteMapDataSource1" 
         runat="server" SiteMapProvider="MenuProvider" />
<cc1:HierarchicalRepeater runat="server" ID="repeater">
    <ItemHeaderTemplate><ul></ItemHeaderTemplate>
    <ItemTemplate><li><%#Eval("Title") %></li></ItemTemplate>
    <ItemFooterTemplate></ul></ItemFooterTemplate>
</cc1:HierarchicalRepeater>

Using this structure, I was able to create the following HTML:

Rendered output:
  • Home
    • Node1
      • Node1 1
      • Node1 2
      • Node1 3
    • Node2
      • Node2 1
      • Node2 2
      • Node2 3
    • Node3
      • Node3 1
      • Node3 2
      • Node3 3
      • Node3 4
        • Node3 4 1

The core function that allows this to happen is the CreateControlHierarchyRecursive method:

C#
protected virtual void CreateControlHierarchyRecursive(IHierarchicalEnumerable dataItems)

Hierarchical data sources rely on being able to iterate its nodes recursively. The HierarchicalRepeater achieves this by calling CreateControlHierarchyRecursive if there is a detection that the current data item has child items. This means that a full traversal of the data source is achievable.

But then I got to thinking, "Great, I have a HierarchicalRepeater control, but what about custom rendering styles per node depth?" With a little help from article's by Danny Chen, I followed his solution for creating a CustomTemplate and then wrapped that into a collection for use within the Repeater control. The ItemTemplate control allows you to specify at which depth and which ListItemType you would like to override. This helps when each depth has its own rendering logic, or the filtering renders specific depths when it is necessary to omit rendering of deep child nodes past a certain depth.

Hierarchical Repeater Control Using TemplateCollection

The following code renders a different color for each depth in a SiteMap. If you notice I have only one item footer template that will be used for all corresponding item templates.

Page code:
ASP.NET
<cc1:HierarchicalRepeater runat="server" 
                          ID="repeater" Width="231px">
    <TemplateCollection>
        <cc1:ItemTemplate Depth="0" ListItemType="ItemTemplate">
            <Template>
                <div style="padding-left:10px;border: 1px solid blue; background: blue;">
                <%#Eval("Item.Value") %>
            </Template>
        </cc1:ItemTemplate>
        <cc1:ItemTemplate Depth="1" ListItemType="ItemTemplate">
            <Template>
                <div style="padding-left:10px;border: 1px solid red; background: red;">
                <%#Eval("Item.Value") %>
            </Template>
        </cc1:ItemTemplate>
        <cc1:ItemTemplate Depth="2" ListItemType="ItemTemplate">
            <Template>
                <div style="padding-left:10px;border: 1px solid red; background: green;">
                <%#Eval("Item.Value") %>
            </Template>
        </cc1:ItemTemplate>
    </TemplateCollection>
    //Default ItemFooterTemplate used for all
    <ItemFooterTemplate>
        </div>
    </ItemFooterTemplate>
</cc1:HierarchicalRepeater>
Code-behind:
C#
HierarchyData<ListItem> root = 
         new HierarchyData<ListItem>(new ListItem("Root", "Root"), null);
HierarchyData<ListItem> child1 = 
         new HierarchyData<ListItem>(new ListItem("Child1", "child1"),root);
HierarchyData<ListItem> child2 = 
         new HierarchyData<ListItem>(new ListItem("Child2", "child2"),root);
HierarchyData<ListItem> child2_1 = 
         new HierarchyData<ListItem>(new ListItem("Child2_1", "child2_1"),child2);
HierarchyDataCollection<HierarchyData<ListItem>> coll = 
         new HierarchyDataCollection<HierarchyData<ListItem>>();
coll.Add(root);
repeater.DataSource = coll;
repeater.DataBind();

Rendered output of the control:

What is that Generic HierarchyData<T> in your code you ask?

There are only a few HierarchicalDatabound controls or classes that implement IHierarchicalEnumerable. Two notable controls are XMLDataSource and SiteMapDatasource, and a handful of classes that are used in conjunction with both datasource controls. Of course, since I am trying to sell you my HierarchicaRepeater control, it is only natural that I provide you with a mechanism for using your own objects to create hierarchical data, instead of you writing all the plumbing code for IHierarchyData and IHierarchicalEnumerable. Only after using Generics heavily for collections and lists did I realize how amazing Generics are. My attempt with the HierarchyData<T> is all the plumbing you need to start creating your own hierarchical datasources. So with HierarchicalRepeater and HierarchyData<T>, you are now ready to create and render complex hierarchical data sources with full control over the rendering of your data.

References

License

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


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralDatabinding HierarchyDataCollection to Treeview Pin
Larry R3-Jul-07 6:48
Larry R3-Jul-07 6:48 
Generalrepaired recursion and viewstate Pin
jwessel25-Jun-07 14:00
jwessel25-Jun-07 14:00 
GeneralRe: repaired recursion and viewstate Pin
Gary Vidal25-Jun-07 15:14
Gary Vidal25-Jun-07 15:14 
GeneralRe: repaired recursion and viewstate Pin
Andreas Kranister26-Jun-07 6:11
Andreas Kranister26-Jun-07 6:11 
GeneralRe: repaired recursion and viewstate Pin
jwessel26-Jun-07 6:53
jwessel26-Jun-07 6:53 
GeneralRe: repaired recursion and viewstate Pin
Andreas Kranister27-Jun-07 4:01
Andreas Kranister27-Jun-07 4:01 
GeneralRe: repaired recursion and viewstate Pin
Andreas Kranister27-Jun-07 4:12
Andreas Kranister27-Jun-07 4:12 
GeneralRe: repaired recursion and viewstate Pin
acl12323-Oct-08 14:12
acl12323-Oct-08 14:12 
QuestionViewState does not work? Pin
Andreas Kranister19-Jun-07 1:20
Andreas Kranister19-Jun-07 1:20 
AnswerRe: ViewState does not work? Pin
Gary Vidal21-Jun-07 16:14
Gary Vidal21-Jun-07 16:14 
GeneralRe: ViewState does not work? [modified] Pin
Andreas Kranister21-Jun-07 20:22
Andreas Kranister21-Jun-07 20:22 
Thanks for your answer. Please try this simple example, it compares the behavior of a datalist and your hierarchical repeater:

<code>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="WebCustomControls" Namespace="WebCustomControls" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Unbenannte Seite</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:DataList ID="DataList1" runat="server">
<ItemTemplate>
Text:
<asp:Label ID="Label1" runat="server" Text='<%# Eval("Item") %>'></asp:Label> 
</ItemTemplate>
</asp:DataList>
<p />

<cc1:HierarchicalRepeater ID="HierarchicalRepeater1" runat="server">
<TemplateCollection>
<cc1:ItemTemplate Depth="0" ListItemType="ItemHeaderTemplate">
<Template>
<div style="margin-left: 0;">
</Template>
</cc1:ItemTemplate>
</TemplateCollection>

<ItemHeaderTemplate>
<div style="margin-left: 20px;">
</ItemHeaderTemplate>

<ItemTemplate>
<div class="WorkStepPanel">
<asp:Label ID="Label1" runat="server" Text='<%# Eval("Item") %>'></asp:Label> 
</div>
</ItemTemplate>

<ItemFooterTemplate>
</div>
</ItemFooterTemplate>
</cc1:HierarchicalRepeater>
<p />

<asp:Button ID="Button1" runat="server" PostBackUrl="~/Default.aspx" Text="Button" />
</div>
</form>
</body>
</html>
</code>

Code behind:
<code>
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.ComponentModel;
using WebCustomControls;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!this.IsPostBack)
{
DataList1.DataSource = GetData();
DataList1.DataBind();

HierarchicalRepeater1.DataSource = GetData();
HierarchicalRepeater1.DataBind();
}
}

private static HierarchyDataCollection<HierarchyData<string>> GetData()
{
HierarchyDataCollection<HierarchyData<string>> collection =
new HierarchyDataCollection<HierarchyData<string>>();

HierarchyData<string> h0 = new HierarchyData<string>("h0", null);
HierarchyData<string> h1 = new HierarchyData<string>("h1", null);
HierarchyData<string> h2 = new HierarchyData<string>("h2", null);
HierarchyData<string> h3 = new HierarchyData<string>("h3", null);

HierarchyData<string> h1_1 = new HierarchyData<string>("h1_1", h1);
HierarchyData<string> h1_2 = new HierarchyData<string>("h1_2", h1);
HierarchyData<string> h3_1 = new HierarchyData<string>("h3_1", h3);

HierarchyData<string> h1_1_1 = new HierarchyData<string>("h1_1_1", h1_1);
HierarchyData<string> h1_1_2 = new HierarchyData<string>("h1_1_2", h1_1);
HierarchyData<string> h1_1_3 = new HierarchyData<string>("h1_1_3", h1_1);

HierarchyData<string> h1_1_2_1 = new HierarchyData<string>("h1_1_2_1", h1_1_2);

collection.Add(h0);
collection.Add(h1);
collection.Add(h2);
collection.Add(h3);

return collection;
}
}
</code>


EDIT: troubles with < and > - sorry for that!
Andreas
AnswerRe: ViewState does not work? Pin
Gary Vidal21-Jun-07 16:27
Gary Vidal21-Jun-07 16:27 
NewsRe: ViewState does not work? Pin
Andreas Kranister21-Jun-07 20:12
Andreas Kranister21-Jun-07 20:12 
AnswerRe: ViewState does not work? Pin
jwessel25-Jun-07 9:57
jwessel25-Jun-07 9:57 
GeneralRe: ViewState does not work? Pin
Member 11601363-Jul-08 8:29
Member 11601363-Jul-08 8:29 
GeneralQuestion: Pin
EarlLocker6-May-07 6:32
EarlLocker6-May-07 6:32 
QuestionItemHeaderTemplate and ItemFooterTemplate Pin
rsenna17-Sep-06 12:30
rsenna17-Sep-06 12:30 
AnswerRe: ItemHeaderTemplate and ItemFooterTemplate [modified] Pin
Gary Vidal17-Sep-06 19:02
Gary Vidal17-Sep-06 19:02 
GeneralRe: ItemHeaderTemplate and ItemFooterTemplate Pin
rsenna18-Sep-06 4:59
rsenna18-Sep-06 4:59 
GeneralRe: ItemHeaderTemplate and ItemFooterTemplate Pin
jwessel25-Jun-07 11:22
jwessel25-Jun-07 11:22 
GeneralRe: ItemHeaderTemplate and ItemFooterTemplate Pin
jwessel25-Jun-07 11:30
jwessel25-Jun-07 11:30 
GeneralThanks Pin
wduros12-Aug-06 10:12
wduros12-Aug-06 10:12 
GeneralRe: Thanks Pin
Gary Vidal2-Aug-06 14:07
Gary Vidal2-Aug-06 14:07 
GeneralDLinq and your control [modified] Pin
Orizz26-Jul-06 5:17
Orizz26-Jul-06 5:17 
GeneralRe: DLinq and your control Pin
Gary Vidal26-Jul-06 12:24
Gary Vidal26-Jul-06 12:24 

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.