Click here to Skip to main content
Licence CPOL
First Posted 4 Jun 2009
Views 11,146
Bookmarked 8 times

How to validate atleast one checkbox is selected in a grid

By | 4 Jun 2009 | Article
How to validate atleast one checkbox is selected in a grid, from the client side.

Introduction

Here is the JavaScript code that ensures at least one checkbox is checked among the checkboxes inside a GridView control before submitting the form. A generalized function is provided which can be used for any grid. The base idea came from a fellow poster, Samir Nigam: http://www.codeproject.com/KB/webforms/GridViewcheckBoxes.aspx.

Using the code

In the DataGrid, I use a checkbox inside a template column, and attach an OnClientClick event to the button by passing the grid name and the checkbox name.

<asp:DataGrid ID="dgTry" runat="server">
    <Columns>
        <asp:BoundColumn DataField="name"></asp:BoundColumn>
        <asp:BoundColumn DataField="Age"></asp:BoundColumn>
        <asp:TemplateColumn>
         <ItemTemplate>
          <asp:CheckBox ID="chkSelect" runat="server"></asp:CheckBox>
         </ItemTemplate>
        </asp:TemplateColumn>
    </Columns>
</asp:DataGrid>

In the JavaScript section, I then add this piece of code:

<script language="javascript">
   function TestCheckBox(gridId,checkboxName)
   {    
      var TargetChildControl = checkboxName;
      var Inputs ;
            Inputs = gridId.getElementsByTagName("input");
      for(var n = 0; n < Inputs.length; ++n)
         if(Inputs[n].type == 'checkbox' && 
            Inputs[n].id.indexOf(TargetChildControl,0) >= 0 && 
            Inputs[n].checked)
          return true;        
            
      alert('Select at least one checkbox!');
      return false;
   }
</script>

Now, add a button and add the OnClientClick event:

<asp:Button ID="btnSubmit" runat="server" 
  OnClick="Submit" OnClientClick="return TestCheckBox(dgTry,'chkSelect');" />

In the above code, we are passing the grid name and the checkbox name to the DataGrid. The function will find out all the input elements within the grid, and look if a checkbox with the name passed is checked. On the first instance it finds such a case, it returns true so a postback occurs, otherwise no.

Points of interest

While coding this, it was fun to find how the client ID could be passed to a function. Later, I figured out the ID of the control was sufficient.

License

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

About the Author

Member 1072719

Web Developer
Clover
India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberC.V.Vikram23:17 15 Sep '09  
GeneralThere could be a problem PinmemberIrwan Hassan6:59 18 Jun '09  
GeneralRe: There could be a problem PinmemberMember 10727194:58 20 Jun '09  
GeneralError message PinmemberMember 256047223:02 8 Jun '09  
GeneralSamir?! PinmemberWartickler2:25 5 Jun '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 4 Jun 2009
Article Copyright 2009 by Member 1072719
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid