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

Merge DataGrid Header

Rate me:
Please Sign up or sign in to vote.
4.62/5 (44 votes)
26 Oct 2004CPOL1 min read 389.8K   3.8K   85   63
Shows how to merge DataGrid header at run-time.

Sample Image

Sample Image

Introduction

This article describes the technique to merge the header of a DataGrid by redirecting the Render method of the DataGrid items.

Background

I found many times the need to merge the header of a DataGrid. So, when I was having spare time, I tried to find a way to do it, and here it is. I know that if you need to merge headers, you can use the Repeater control instead. But if you are fond of DataGrid (just like me), or may be you already used DataGrid, then this article is for you.

Using the code

When rendered, a DataGrid will be converted into a HTML Table element and the header will be the first HTML TR element. So, to have a merged header, we need to have control in the rendering of the header. This can be achieved by redirecting the Render method of the DataGrid header using the SetRenderMethodDelegate of the DataGrid header on ItemCreated event, like this:

C#
private void Datagrid1_ItemCreated(object sender, 
          System.Web.UI.WebControls.DataGridItemEventArgs e) 
{ 
    //*** Examine if the item created is the header item 
    ListItemType lit = e.Item.ItemType; 
    if(ListItemType.Header == lit) 
    { 
        //*** Redirect the default header rendering method to our own method 
        e.Item.SetRenderMethodDelegate(new RenderMethod(NewRenderMethod)); 
    } 
}

And here is our own Render method:

C#
/// <summary> 
/// This is our custom render method for the grid header item 
/// </summary> 
/// <param name="writer"></param> 
/// <param name="ctl"></param> 
private void NewRenderMethod(HtmlTextWriter writer, Control ctl) 
{ 
    //***  We don't need to write the <TR> tag
    //     because it's already written by the writer 
    //     so now we write the Name column 
    writer.Write("<TD colspan=\"3\" align=\"center\">Name</TD>\n"); 

    //***  The Age column must have the rowspan attribute
    //     and must be rendered inside the 
    //     first row so it will centered vertically 
    TableCell cell = (TableCell)ctl.Controls[ctl.Controls.Count-1]; 
    cell.Attributes.Add("rowspan","2"); 
    cell.RenderControl(writer); 

    //***     Now we close the first row, so we can insert the second one 
    writer.Write("</TR>\n"); 

    //***  Add the style attributes that was defined in design time 
    //     to our second row so they both will have the same appearance 
    DataGrid1.HeaderStyle.AddAttributesToRender(writer); 

    //***     Insert the second row 
    writer.RenderBeginTag("TR"); 

    //***  Render all the cells that was defined
    //     in design time, except the last one 
    //     because we already rendered it above 
    for(int i=0; i<= ctl.Controls.Count-2; i++) 
    { 
        ctl.Controls[i].RenderControl(writer); 
    } 

    //***  We don't need to write the </TR> close tag
    //     because the writer will do that for us 
    //     and so we're done :) 
}

I have created a decorator class to decorate a DataGrid (ASPNetDatagridDecorator class) to have a merge header, and all you need to do is define the header cell like this (you can use the auto format feature, but doesn't work for all):

C#
private void Page_Load(object sender, System.EventArgs e)
{
    // Put user code to initialize the page here
    if(!this.IsPostBack)
    {
        TableCell cell = null;
        DataGrid1.DataSource = GetData();
        DataGrid1.DataBind(); 

        m_add.DatagridToDecorate = Datagrid2;
        ArrayList header = new ArrayList();

        // cell = new TableCell();
        // cell.Text = "Code";
        // cell.RowSpan = 2;
        // cell.HorizontalAlign = HorizontalAlign.Center;
        // header.Add(cell);

        cell = new TableCell();
        cell.Text = "Name";
        cell.RowSpan = 2;
        cell.HorizontalAlign = HorizontalAlign.Center;
        header.Add(cell);

        cell = new TableCell();
        cell.Text = "Name";
        cell.ColumnSpan = 3;
        cell.HorizontalAlign = HorizontalAlign.Center;
        header.Add(cell);

        cell = new TableCell();
        cell.Text = "Age";
        cell.RowSpan = 2;
        cell.HorizontalAlign = HorizontalAlign.Center;
        header.Add(cell);

        cell = new TableCell();
        cell.Text = "School";
        cell.ColumnSpan = 3;
        cell.HorizontalAlign = HorizontalAlign.Center;
        header.Add(cell);

        cell = new TableCell();
        cell.Text = "Religion";
        cell.RowSpan = 2;
        cell.HorizontalAlign = HorizontalAlign.Center;
        header.Add(cell);

        m_add.AddMergeHeader(header);

        Datagrid2.DataSource = GetData();
        Datagrid2.DataBind();

    }

}

License

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


Written By
Web Developer
Indonesia Indonesia
Irwansyah is a web developer currently using ASP.Net. Irwansyah main interests lie in developing business application framework.

Irwansyah intends to work overseas one day and explore the world till the end of the world.

Comments and Discussions

 
GeneralMy vote of 1 Pin
shankar.koppella16-Aug-10 0:20
shankar.koppella16-Aug-10 0:20 
QuestionProblem with row selecting Pin
Member 25375619-Jul-09 11:22
Member 25375619-Jul-09 11:22 
GeneralPage PostBack Pin
Goast25212-Mar-09 5:01
Goast25212-Mar-09 5:01 
GeneralPage PostBack Pin
MarichamyK9-Jul-09 18:57
MarichamyK9-Jul-09 18:57 
GeneralRe: Page PostBack Pin
isunshine4-Jan-10 11:17
isunshine4-Jan-10 11:17 
GeneralExcellent work...Keep it up Pin
Mohammed Hameed27-Jan-09 21:30
professionalMohammed Hameed27-Jan-09 21:30 
QuestionAny solution for the sorting the dataGrid Pin
bpranathi14-Jul-08 10:03
bpranathi14-Jul-08 10:03 
GeneralVB Version Pin
meme me20-May-08 5:00
meme me20-May-08 5:00 
GeneralThis moves the grid below the page footer. Pin
tech110-Mar-08 5:15
tech110-Mar-08 5:15 
Generalproblem when I am creating dynamic grids Pin
Forwardmurali20-Sep-07 23:08
Forwardmurali20-Sep-07 23:08 
GeneralSimplified and improved version the solution described above. Pin
Mykola Tarasyuk13-Jun-07 3:33
Mykola Tarasyuk13-Jun-07 3:33 
QuestionProblem with page [modified] Pin
maya_zakry30-May-07 19:59
maya_zakry30-May-07 19:59 
GeneralProblem with dynamic columns Pin
satejprabhu25-Feb-07 22:30
satejprabhu25-Feb-07 22:30 
QuestionWhat about Sorting and Paging ? Pin
codeprojectmitu9-Nov-06 23:51
codeprojectmitu9-Nov-06 23:51 
GeneralSorting Doesent work where RowSpan=2 Pin
Anand Morbia14-Oct-06 4:49
Anand Morbia14-Oct-06 4:49 
GeneralHelp to Merge it in VB.NET version... Pin
slee_g4-Sep-06 22:43
slee_g4-Sep-06 22:43 
QuestionSolution for Windows Form DataGridView Pin
C#newcomer18-Aug-06 17:04
C#newcomer18-Aug-06 17:04 
GeneralThanks (and some critics) Pin
nsimeonov12-Jul-06 9:00
nsimeonov12-Jul-06 9:00 
GeneralRe: Thanks (and some critics) Pin
irwansyah12-Jul-06 15:25
irwansyah12-Jul-06 15:25 
GeneralRe: Thanks (and some critics) Pin
nsimeonov12-Jul-06 15:43
nsimeonov12-Jul-06 15:43 
GeneralProblem with ItemCommand event Pin
Arturo Montoya Rivera23-Mar-06 12:50
Arturo Montoya Rivera23-Mar-06 12:50 
GeneralRe: Problem with ItemCommand event Pin
Arturo Montoya Rivera24-Mar-06 5:08
Arturo Montoya Rivera24-Mar-06 5:08 
GeneralRe: Problem with ItemCommand event Pin
Jakeanson27-Apr-06 23:51
Jakeanson27-Apr-06 23:51 
GeneralTHANK YOU! Pin
sroh3-Mar-06 14:39
sroh3-Mar-06 14:39 
GeneralProblem with Invisible Column Pin
navinkaus11-Jan-06 21:55
navinkaus11-Jan-06 21:55 

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.