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

Handling events of child controls inside a DataGrid

Rate me:
Please Sign up or sign in to vote.
3.12/5 (23 votes)
2 Jun 20042 min read 244.9K   1.5K   46   41
How to hook up on an event of a web control residing inside a DataGrid cell.

Introduction

One of the big DataGrid mysteries is (or was, at least for me) the handling of events triggered by controls from within a DataGrid cell and not dealt with by the DataGrid. An example is handling of the OnCheckedChanged event of a CheckBox Control with enabled AutoPostBack. On the other hand than these non preset postback controls are button controls with default postback and support of a command attribute for which the DataGrid provides sufficient assistance.

Background

If you, like me, found that using a DataGrid is one of the most convenient ways to handle any data-driven web applications, you might quite often have experienced its limitations. If you need to get things done quickly, you might not want to write an entire column control yourself, but just use a TemplateColumn. Within this TemplateColumn, you would probably want to use some web controls and of course take advantage of all their native features, including events. But this doesn't work out quite as smoothly as it might sound. In the course of experimenting with controls inside a DataGrid, I experienced quite a lot of odd runtime compiler errors till I ran across one of the most interesting and useful DataGrid events: the ItemCreated event.

How-To

What we want to do here is just hook a handler routine onto the OnCheckedChanged event of the CheckBox Control. The TemplateColumn with the CheckBox might look like the following example:

ASP.NET
<asp:TemplateColumn HeaderText="Checkbox"> 
 <ItemTemplate> 
   <asp:CheckBox ID="cbExample" AutoPostBack="true" runat="server"> 
   </asp:CheckBox> 
 </ItemTemplate> 
</asp:TemplateColumn> 

The function for handling the event in the undelying code will look very similar to this:

C#
protected void OnChangeHandler(object sender, System.EventArgs e)
{
 // Handle the event...
}

So where are we going to connect the handler and the control? If we put the registration directly inside the Control such as OnCheckChanged="OnChangeHandler" while using code to support it, we will probably end up with a nice runtime compiler error. By applying the idea of delegate registration from VisualStudio, we can just do it at runtime. Using the ItemCreated event of the DataGrid (see code below) works out best for me, especially because I usually do a lot of other tweaking around like merging footer cells and switching sorting symbols.

C#
private void grid_ItemCreated( object sender,
 System.Web.UI.WebControls.DataGridItemEventArgs e)
{
 ListItemType elemType = e.Item.ItemType;
 if ((elemType == ListItemType.Item)||(elemType == ListItemType.AlternatingItem))
 {
  // *** Event Handler for Checkbox ***
  CheckBox cBox = (CheckBox) e.Item.FindControl("cbExample");
  cBox.CheckedChanged += new EventHandler(OnChangeHandler);
 }
}

Points of Interest

Handling DataGrid and related events is sometimes a cumbersome task, but the DataGrid is still one of my favorite controls. I would be happy to hear your solutions to this kind of problem. Particular points of interest: whether you simply placed a function call inside another DataGrid event, and why you preferred this solution in your particular situation.

History

  • First Post on 22 Apr 2004.
  • Added a VS.net 2003 sample project on 29 May 2004.

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


Written By
Team Leader
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: unruledboy Pin
ValeriyP4-Jun-07 7:22
ValeriyP4-Jun-07 7:22 
QuestionNow to get the datagrids [e.Item.ItemIndex]? Pin
TheChad24-May-04 8:36
TheChad24-May-04 8:36 
AnswerRe: Now to get the datagrids [e.Item.ItemIndex]? Pin
mkruppa24-May-04 10:32
mkruppa24-May-04 10:32 
GeneralDemo Pin
Salam Y. ELIAS22-May-04 4:00
professionalSalam Y. ELIAS22-May-04 4:00 
GeneralRe: Demo Pin
mkruppa24-May-04 10:24
mkruppa24-May-04 10:24 
GeneralRe: Demo Pin
Salam Y. ELIAS25-May-04 9:54
professionalSalam Y. ELIAS25-May-04 9:54 
Generalhandle event sample Pin
sukoco halim13-May-04 18:28
sukoco halim13-May-04 18:28 
GeneralRe: handle event sample Pin
mkruppa14-May-04 6:24
mkruppa14-May-04 6:24 
GeneralRe: handle event sample Pin
sukoco halim16-May-04 21:09
sukoco halim16-May-04 21:09 
GeneralRe: handle event sample Pin
mkruppa16-May-04 22:16
mkruppa16-May-04 22:16 
GeneralRe: handle event sample Pin
sukoco halim17-May-04 0:14
sukoco halim17-May-04 0:14 
GeneralRe: handle event sample Pin
mkruppa17-May-04 23:57
mkruppa17-May-04 23:57 
GeneralRe: handle event sample Pin
sukoco halim31-May-04 23:58
sukoco halim31-May-04 23:58 
Generalquestion... Pin
l a u r e n29-Apr-04 9:50
l a u r e n29-Apr-04 9:50 
GeneralRe: question... Pin
mkruppa29-Apr-04 16:43
mkruppa29-Apr-04 16:43 
GeneralThanks Pin
NehalSS28-Apr-04 18:55
NehalSS28-Apr-04 18: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.