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

DataGrid Template Columns creation in Runtime (using C#) and DataBinding

Rate me:
Please Sign up or sign in to vote.
4.09/5 (44 votes)
29 May 2004CPOL2 min read 493.6K   4.3K   76   52
Creating Template Columns in runtime and data binding.

Introduction

Here is a code where you can create a DataGrid at runtime with Template Columns with all types of templates (ItemTemplate, EditItemTemplate, HeaderTemplate, FooterTemplate) and also bind the templates with data.

Creating a grid dynamically with bound columns and even with Button column is simple, but with Template columns, it is quite complicated. Here is a clean solution for the same. :)

  • Create a grid and declare columns.
  • Class file should be inherited from ITemplate for creating templates.
  • Add all columns to the grid.
  • Create events.
  • Fill the grid.
  • Write code for databinding columns in ItemDataBound event.
  • Execute it!

Creating a Grid and declaring columns:

C#
dgRt.ID="dgRt1";//Grid Settings
dgRt.AutoGenerateColumns=true;
dgRt.AllowPaging=true;
dgRt.ShowFooter=true;
dgRt.ShowHeader=true;
declare Columns:

BoundColumn bcl1 = new BoundColumn();

//columns Decalration

TemplateColumn tcl1 = new TemplateColumn();
TemplateColumn tcl2 = new TemplateColumn();
TemplateColumn tcl3 = new TemplateColumn();
TemplateColumn tcl4 = new TemplateColumn();
TemplateColumn tcl5 = new TemplateColumn();
TemplateColumn tcl6 = new TemplateColumn();
TemplateColumn tcl7 = new TemplateColumn();
TemplateColumn tcl8 = new TemplateColumn();
TemplateColumn tcl9 = new TemplateColumn();
TemplateColumn tcl10 = new TemplateColumn();
TemplateColumn tcl11 = new TemplateColumn();

EditCommandColumn ecol1=new EditCommandColumn();

Class File Inherited from ITemplate for Creating Templates:

You need to write a separate class file which inherits the ITemplate interface to create the templates. We have to create a method InstantiateIn which is necessary because of the inheritance from the Itemplate. This gives you the column created with the specified control needed to be added in it. Create an event DataBinding for the control being created and specify all the actions that need to be done there.

Here, I am writing a code to create an EditItemTemplate column with drop down list box, and the attached code contains many classes for controls like TextBox, CheckBox, LinkButton, PushButton, and many more...

C#
public class CreateItemTemplateDDL : ITemplate
{
  DataTable dtBind;
  string strddlName;
  string strDataValueField;
  string strDataTextField;

Here, I added the constructor for creating the DDL with value member and text member.

C#
public CreateItemTemplateDDL(string DDLName, 
  string DataValueField, string DataTextField, DataTable DDLSource)
{
  this.dtBind=DDLSource;
  this.strDataValueField=DataValueField;
  this.strDataTextField=DataTextField;
  this.strddlName=DDLName;
}

Here is the code for declaring DataBinding event for the DDL being added. This occurs while DataGrid is being bound.

C#
public void InstantiateIn(Control objContainer)
{
  DropDownList ddl = new DropDownList();
  ddl.DataBinding+=new EventHandler(ddl_DataBinding);
  objContainer.Controls.Add(ddl);
}

Here, you can assign all the properties and every thing else required for the DDL.

C#
private void ddl_DataBinding(object sender, EventArgs e)
{
  DropDownList ddl= (DropDownList)sender;
  ddl.ID=strddlName;
  ddl.DataSource=dtBind;
  ddl.DataValueField=strDataValueField;
  ddl.DataTextField=strDataTextField;

  //ddl.DataBind();
}

More control classes are available in the download. Likewise, you can add more controls to your DataGrid calling the specified classes.

For using this class:

C#
tcl7.ItemTemplate= new CreateItemTemplateDDL("ddlGrid","ID","UserName",dt);

Here, you have added the DDL for the ItemTemplate. You may call the same even if you want a DDL in EditITemTemplate, FooterTemplate, as well in HeaderTemplate too.

Add all Columns to the Grid:

C#
dgRt.Columns.Add(tcl1);
dgRt.Columns.Add(tcl2);
dgRt.Columns.Add(tcl3);
dgRt.Columns.Add(tcl4);
dgRt.Columns.Add(tcl5);
dgRt.Columns.Add(tcl6);
dgRt.Columns.Add(tcl7);
dgRt.Columns.Add(tcl8);
dgRt.Columns.Add(tcl9);
dgRt.Columns.Add(tcl11);
dgRt.Columns.Add(ecol1);
dgRt.Columns.Add(bcl1);

Here by, you have added all the columns to the grid.

Create Events:

After creating grid, if you wish to have some events for it, say you want to bind the grid, then you need to create a ItemDataBound column, need a pager, then have PagedindexChanged event.

dgRt.ItemDataBound+=new DataGridItemEventHandler(dgRt_ItemDataBound);
dgRt.ItemCommand+=new DataGridCommandEventHandler(dgRt_ItemCommand);
dgRt.PageIndexChanged+=new DataGridPageChangedEventHandler(dgRt_PageIndexChanged);
dgRt.EditCommand+=new DataGridCommandEventHandler(dgRt_EditCommand);
dgRt.UpdateCommand+=new DataGridCommandEventHandler(dgRt_UpdateCommand);
dgRt.CancelCommand+=new DataGridCommandEventHandler(dgRt_CancelCommand);

Fill the Grid:

Fill the grid by pulling the data from the database.

private void fillgrid()
{
  SqlConnection cn = new SqlConnection();
  SqlCommand cmd = new SqlCommand();
  cmd.Connection=cn;
  cmd.CommandText="select * from SmpTable order by cm";
  DataSet ds = new DataSet();
  SqlDataAdapter adp = new SqlDataAdapter(cmd);
  cn.ConnectionString= 
    "SERVER=SQLSERVERNAME;DATABASE=TestProject;UID=abcd;PWD=alskdjfh";

  try
  {
    cn.Open();
    adp.Fill(ds);
    dgRt.DataSource=ds.Tables[0];
    dgRt.DataBind();
    cn.Close();
  }
  catch (Exception ex)
  {
    lblError.Text="Error Occured";
  }
}

Write Code for databinding columns in ItemDataBound Event:

C#
private void dgRt_ItemDataBound(object sender, DataGridItemEventArgs e)
{
  if((e.Item.ItemType==ListItemType.Item ) || 
    (e.Item.ItemType==ListItemType.AlternatingItem))
  {
    DropDownList ddlSmp=((DropDownList)e.Item.Cells[7].FindControl("ddlGrid"));
    ddlSmp.DataSource=.DataSource=dt;//your Data Table Name
    ddlSmp.DataValueField="empid";
    ddlSmp.DataTextField="EmpName";
  }
}

That's it! Now, the grid is ready for you.

License

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


Written By
Architect Tesco HSC
India India
Am a C#.Net, ASP.Net, SQL Server Professional
Intrested in Music, Cricket, and exploring new ideas...

Comments and Discussions

 
GeneralRe: UpdateCommand Pin
Kidan15-Sep-05 4:35
Kidan15-Sep-05 4:35 
GeneralCustom object binding Pin
amirchip4-Jan-05 7:41
amirchip4-Jan-05 7:41 
GeneralRe: Custom object binding Pin
Anonymous6-Jan-05 22:06
Anonymous6-Jan-05 22:06 
GeneralRe: Custom object binding Pin
amirchip7-Jan-05 0:14
amirchip7-Jan-05 0:14 
QuestionHow to get to dropdownlist's SelectedIndexChnaged event Pin
hgrewa24-Nov-04 11:45
hgrewa24-Nov-04 11:45 
AnswerRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
R. Senthil Kumaran24-Nov-04 12:51
R. Senthil Kumaran24-Nov-04 12:51 
GeneralRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
Talha Anwer25-Feb-05 8:59
Talha Anwer25-Feb-05 8:59 
GeneralRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
hgrewa26-Jun-05 7:30
hgrewa26-Jun-05 7:30 
I was able to do it. Make sure you put your control (Ex. Drop down list) in a user control (*.ascx) and then add the user control in the datagrid/datalist. Also, make sure all of the events raised by your control (Drop down list) are handled within the *.ascx file [Initially, I tried to handle the selected index change event in the *.aspx file where my datalist is placed. It didn’t work for me! I am no expert in this subject, so I can't fully explain why it works this way. But it sure is working for me.]

Good Luck......


Raikotia
GeneralRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
allym8126-Sep-05 3:53
allym8126-Sep-05 3:53 
GeneralRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
cac_31-Oct-06 14:06
cac_31-Oct-06 14:06 
GeneralRe: How to get to dropdownlist's SelectedIndexChnaged event Pin
rajan_dce22-Jan-07 5:48
rajan_dce22-Jan-07 5:48 
QuestionHow to name the group Pin
luiz.ragazzi19-Oct-04 8:39
luiz.ragazzi19-Oct-04 8:39 
AnswerRe: How to name the group Pin
R. Senthil Kumaran20-Oct-04 21:57
R. Senthil Kumaran20-Oct-04 21:57 
GeneralRe: How to name the group Pin
luiz.ragazzi21-Oct-04 4:51
luiz.ragazzi21-Oct-04 4:51 
Generalusing DataFormatString Pin
anilnair_m7-Oct-04 1:25
anilnair_m7-Oct-04 1:25 
GeneralRe: using DataFormatString Pin
R. Senthil Kumaran8-Oct-04 3:30
R. Senthil Kumaran8-Oct-04 3:30 
GeneralAdding an Item to the drop down Pin
AndreaWil4-Aug-04 15:00
AndreaWil4-Aug-04 15:00 
GeneralRe: Adding an Item to the drop down Pin
R. Senthil Kumaran4-Aug-04 18:42
R. Senthil Kumaran4-Aug-04 18:42 
GeneralRe: Adding an Item to the drop down Pin
AndreaWil4-Aug-04 19:05
AndreaWil4-Aug-04 19:05 
Generalnew header Pin
Fernando Finelli23-Jul-04 4:53
Fernando Finelli23-Jul-04 4:53 
GeneralRe: new header Pin
R. Senthil Kumaran29-Jul-04 22:03
R. Senthil Kumaran29-Jul-04 22:03 

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.