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

DataGrid CheckBox Select Multiple Rows Column

Rate me:
Please Sign up or sign in to vote.
4.80/5 (31 votes)
11 Apr 2005CPOL2 min read 254.4K   3.1K   85   46
Allow users to select multiple records from your DataGrid. "CheckAll / UnCheck All" functionality on client side.

Sample Image - dgcheckboxcolumn.jpg

Introduction

Multiple row selection in a web DataGrid is a usual requirement and the common and most elegant way to implement that is definitely using CheckBox(s). A checkbox column must of course be accompanied with a CheckAll / UnCheckAll functionality.

Outline

After searching this site, I was surprised not to find anything that suited this requirement completely. I did however find what I was looking for in different segments (acknowledged below). I decided to compile all what I needed in a reusable class / library (for reference). Following is the functionality provided:

  • Checkbox column for DataGrid.
  • CheckAll, UnCheckAll checkbox in the header without PostBack to the server.
  • Static method to register client side JavaScripts.

How to use

Download the supplied .cs file and add to your project. (If your project is in another language, create a new library project and add the supplied .cs to that project, compile the library, and attach the resulting .dll as a reference to your project).

Register a TagPrefix in your aspx page for the new column as follows:

ASP.NET
<%@ Register TagPrefix="GridSelectCheckBox" Namespace="solCommon.Web.UI.DataGrid" 
                                                   Assembly="ProjectAssembly" %>

This is, of course, a snippet from my code, you can register any TagPrefix in your page. Should you change the namespace in the supplied .cs file, replace the Namespace attribute accordingly. The Assembly attribute must be your project/library assembly.

The next logical step is to include the column in your DataGrid. You may include the column at any location. Following adds the column at location 0, i.e. the first column:

ASP.NET
<asp:datagrid ...>
...
    <Columns>
    <GridSelectCheckBox:DGCheckBoxColumn />
    ...
    </Columns>
...
</asp:datagrid>

Lastly, we use the exposed static method of DGCheckBoxColumn class to register client side JavaScripts for the CheckAll/UncheckAll feature. In the Page_Load method of your aspx page, add the following line:

C#
DGCheckBoxColumn.RegisterClientCheckEvents(this,"Form1");

You should replace "Form1" with the name of the form in which your DataGrid resides.

Your DataGrid is now ready.

You can get the selected indexes or the selected DataKeys by calling one of the exposed properties, i.e. DGCheckBoxColumn.SelectedIndexes and DGCheckBoxColumn.SelectedDataKeys. Let's say, in your button click event handler you try the following:

C#
// since we know that our column in the grid is the first one ...
DGCheckBoxColumn dgchkbxCol = (DGCheckBoxColumn)myGrid.Columns[0];

// iterate through the selection
foreach (int i in dgchkbxCol.SelectedIndexes)
{
   // do something ...
}

Acknowledgements

I must thank the following two articles as I have used much of their contents:

Usage and Copyrights

You may freely use/modify the supplied file for your own usage, as long as you retain the acknowledgements presented above. Please don't forget to rate this article. Thanks and good luck.

License

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


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

Comments and Discussions

 
GeneralIt works Pin
Member 3527649-Jun-05 4:27
Member 3527649-Jun-05 4:27 
Questioncan believe Pin
Akantos30-May-05 11:38
Akantos30-May-05 11:38 
GeneralPlease help to setup &quot;check all&quot; Pin
Anonymous21-Apr-05 3:59
Anonymous21-Apr-05 3:59 
GeneralRe: Please help to setup &quot;check all&quot; Pin
Noman Nadeem22-Apr-05 19:22
Noman Nadeem22-Apr-05 19:22 
GeneralRe: Please help to setup &quot;check all&quot; Pin
Michelle Tucker23-Apr-05 13:07
sussMichelle Tucker23-Apr-05 13:07 
GeneralRe: Please help to setup &quot;check all&quot; Pin
Noman Nadeem23-Apr-05 18:30
Noman Nadeem23-Apr-05 18:30 
GeneralRe: Please help to setup &quot;check all&quot; Pin
Casual Jim30-May-05 0:57
Casual Jim30-May-05 0:57 
GeneralRe: Please help to setup &quot;check all&quot; Pin
jachyuen6-Jul-05 16:30
jachyuen6-Jul-05 16:30 
thanks for this post and it solves my issue.
GeneralRe: Please help to setup &quot;check all&quot; Pin
MiniDawg25-Jan-06 9:12
MiniDawg25-Jan-06 9:12 
GeneralError Pin
Sel_13-Apr-05 16:29
Sel_13-Apr-05 16:29 
GeneralRe: Error Pin
Noman Nadeem13-Apr-05 20:19
Noman Nadeem13-Apr-05 20:19 
Generalserious errors any idea what you are doing Pin
Tereas preatur23-Apr-05 13:12
sussTereas preatur23-Apr-05 13:12 
GeneralRe: serious errors any idea what you are doing Pin
Noman Nadeem23-Apr-05 18:33
Noman Nadeem23-Apr-05 18:33 
GeneralMetabuilders row selector column Pin
Simon Capewell13-Apr-05 2:57
Simon Capewell13-Apr-05 2:57 
Questionsuport? Pin
tengtium12-Apr-05 23:39
tengtium12-Apr-05 23:39 
AnswerRe: suport? Pin
Noman Nadeem13-Apr-05 6:45
Noman Nadeem13-Apr-05 6:45 
GeneralNot Bad... Pin
Bassam Abdul-Baki11-Apr-05 8:23
professionalBassam Abdul-Baki11-Apr-05 8:23 

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.