Click here to Skip to main content
6,594,432 members and growing! (16,042 online)
Email Password   helpLost your password?
Web Development » ASP.NET Controls » General     Intermediate

Clickable Rows in a DataGrid

By Dave Hurt

How to setup a DataGrid to accept a user's click on a row.
C#, Windows, .NET 1.1, ASP.NET, ADO.NET, WebForms, VS.NET2003, Dev
Posted:28 Nov 2005
Updated:1 Dec 2005
Views:94,108
Bookmarked:66 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
19 votes for this article.
Popularity: 4.86 Rating: 3.80 out of 5
1 vote, 5.3%
1
4 votes, 21.1%
2
1 vote, 5.3%
3
5 votes, 26.3%
4
8 votes, 42.1%
5

Sample Image - dgrowselect

Introduction

Ah, everyone's favorite tool, the DataGrid. While a great tool, it can be difficult to work with, as I'm sure you all know. In several of my page making conquests, the DataGrid was the weapon of choice for displaying data, but left a need in the user interface for the users of my site. Being confined to clicking buttons or links to edit data or to expand on a row, while still functional, it left quite a bit of confusion for first time and often repeat users. So, towel in hand, I set out to find out how to setup a DataGrid's rows to be clickable.

Background

In my quest, I had searched several sites that gave some or incomplete information on how to setup a DataGrid properly to handle Click events. After many hours of banging my head and finally getting it to work, I vowed to document it all and share the code to try to prevent some other poor soul from having to go through what I did.

Using the code

The idea behind getting this to work is to create an OnClick event for that row that mimics hitting an ASP.NET WebForm button; in my example it's the Select button. If you're not familiar with how ASP.NET's web form controls work, when you click on them, they fire a JavaScript function called __doPostBack(eventTarget, eventArgument). The control clicked passes its ID along to the JavaScript function and the function starts the postback process. Now it becomes difficult because these IDs are generated on the fly when the page is viewed, but at least in a predictable manner. While not difficult to setup, there are several small things you need to do to make everything fit together.

//The select button's code as viewed in the running page's source
<a href="javascript:__doPostBack('_ctl0$dgRequests$_ctl4$_ctl0','')">Select</a>
//The Datagrid row with our added attributes as viewed 
//in the running page's source. Notice how the onclick command 
//matches the select button above
<tr onmouseover="this.style.backgroundColor='beige';this.style.cursor='hand'" 
        onmouseout="this.style.backgroundColor='#D9E2FF';" 
        onclick="javascript:__doPostBack('_ctl0$dgRequests$_ctl4$_ctl0','')">

In my example, I mimic a Select button. So for this, I had to add a Select button column to my DataGrid. However, it doesn't need to be visible so this column can just be hidden. If this column isn't added, the Click event won't detect properly and the event listener won't know how to trigger the proper listener. Next, the OnClick event can be added to the DataGrid row. The ItemCreated event for the DataGrid is used to add the necessary JavaScript to each row. The only line that is necessary is the OnClick attribute; the first line changes the cursor to a hand cursor and changes the color of the row background, while the second line removes the color change on mouse out. I split up alternating items and items because I had my DataGrid set up for alternating colors for visibility. If you aren't playing with the colors, you can combine the if statements as you see in the second piece of code.

private void dgRequests_ItemCreated(object sender, 
         System.Web.UI.WebControls.DataGridItemEventArgs e)
//For Datagrig's with alternating colors

{
    if(e.Item.ItemType == ListItemType.AlternatingItem)
    {
        e.Item.Attributes.Add("onmouseover", 
               "this.style.backgroundColor='beige';this.style.cursor='hand'");
        e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='#99B3FF';");
        e.Item.Attributes.Add("onclick", "javascript:__doPostBack" + 
               "('_ctl0$DataGrid1$_ctl" + 
               ((Convert.ToInt32(e.Item.ItemIndex.ToString()))+2) + 
               "$_ctl0','')");
    }
    if(e.Item.ItemType == ListItemType.Item)
    {
        e.Item.Attributes.Add("onmouseover", 
               "this.style.backgroundColor='beige';this.style.cursor='pointer'");
        e.Item.Attributes.Add("onmouseout", "this.style.backgroundColor='#D9E2FF';");
        e.Item.Attributes.Add("onclick", "javascript:__doPostBack" + 
               "('_ctl0$DataGrid1$_ctl" + 
               ((Convert.ToInt32(e.Item.ItemIndex.ToString()))+2) + 
               "$_ctl0','')");
    }
}
private void dgRequests_ItemCreated(object sender, 
                  System.Web.UI.WebControls.DataGridItemEventArgs e)
//For a single color Datagrid

{
    if(e.Item.ItemType == ListItemType.AlternatingItem || 
       e.Item.ItemType == ListItemType.Item)
    {
        e.Item.Attributes.Add("onmouseover", 
               "this.style.backgroundColor='beige';this.style.cursor='pointer'");
        e.Item.Attributes.Add("onmouseout", 
               "this.style.backgroundColor='#99B3FF';");
        e.Item.Attributes.Add("onclick", "javascript:__doPostBack" + 
               "('_ctl0$DataGrid1$_ctl" + 
               ((Convert.ToInt32(e.Item.ItemIndex.ToString()))+2) + 
               "$_ctl0','')");
    }
}

If you have problems with the post back function lining up, you can unhide the Select column and look at the runtime source to see if the row postback functions match the Select button.

The rest of the code is handled in the same manner as a Select button event; set up the SelecteIndexChanged function and create the event listener. The whole thing is rather simple to set up and can be done for any of the button columns you want, saving you from the perils of user navigation issues!

A small change you will need to make if you choose to use this in VB is to change the __doPostBack function to this:

e.Item.Attributes.Add("onclick", _
   "javascript:__doPostBack('dgRequests$_ctl" & _
   ((Convert.ToInt32(e.Item.ItemIndex)) + 2) & "$_ctl0','')")

Conclusion

When I started looking into this, I wasn't familiar with the __doPostBack function that ASP.NET uses, so for me it was an interesting project. It's a simple way to improve your UI, and hey, a happy user = peace and quiet! *Pulls out towel and sticks thumb out* Till next time!

History

  • 11-26-05 - Initial writing.
  • 11-28-05 - Changed the OnMouseOver event to handle Firefox better and added an OnClick event for VB.NET.

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

Dave Hurt


Member
I am Network Engineer by day and software geek by night time. I started into the software world by teaching myself basica on the old family Tandy 1000 and I've been moving up in the world ever since. I've started a computer science major at Michigan Tech University, and will eventually finish it up.
Location: United States United States

Other popular ASP.NET Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 23 of 23 (Total in Forum: 23) (Refresh)FirstPrevNext
GeneralFull working example? PinmemberTravis Walker20:13 14 Jan '09  
GeneralGood article PinmemberPatrick de Ruijter2:26 19 Dec '08  
GeneralThanks for your post Pinmemberrlnssaikrishna6:34 12 Nov '08  
GeneralDataGrid DoPostBack PinmemberBVPB0:08 27 Jun '07  
QuestionHelp Pinmemberfcp15:45 19 Jul '06  
GeneralLittle change in code (only for vb.net) Pinmemberrc_latha10:20 16 May '06  
GeneralIn ASP.NET 2.0... PinmemberKacee Giger6:44 9 Jan '06  
GeneralRe: In ASP.NET 2.0... Pinmemberyw_edin14:48 19 Jun '06  
GeneralUsing VB Pinmembergharry11:57 23 Dec '05  
GeneralRe: Using VB Pinmemberxoxoxoxoxoxox12:52 3 Feb '06  
GeneralRe: Using VB Pinmembergharry12:01 4 Feb '06  
GeneralDataGrid_Select event not firing Pinmemberadamst3wart@hotmail.com0:17 16 Dec '05  
GeneralRe: DataGrid_Select event not firing PinmemberMike From Oz20:03 16 Dec '05  
GeneralRe: DataGrid_Select event not firing PinmemberSebina5:18 13 Aug '07  
GeneralBetter way Pinmembersyao1686:04 29 Nov '05  
GeneralRe: Better way Pinmemberfulgeras22:56 7 Dec '05  
GeneralRe: Better way PinmemberDave Hurt4:02 8 Dec '05  
GeneralRe: Better way Pinmemberfulgeras7:24 8 Dec '05  
GeneralRe: Better way PinmemberSigurd Johansen15:41 9 Dec '05  
GeneralRe: Better way PinmemberRMAN_OTown7:29 8 Dec '05  
GeneralRe: Better way PinmemberRMAN_OTown8:50 8 Dec '05  
GeneralRe: Better way PinmemberHooded_Prince6:20 6 Mar '08  
Generalcodework Pinmemberxiezhenhua15:49 28 Nov '05  

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

PermaLink | Privacy | Terms of Use
Last Updated: 1 Dec 2005
Editor: Smitha Vijayan
Copyright 2005 by Dave Hurt
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project