Click here to Skip to main content
Licence CPOL
First Posted 22 Jan 2008
Views 117,142
Downloads 600
Bookmarked 67 times

Client-Side Validation for the CheckBoxes Inside a GridView

By | 9 May 2008 | Article
This article describes how to count the selected checkboxes inside a GridView control.

demo.gif

Introduction

I am presenting here a JavaScript code that ensures that at least one checkbox is checked among the checkboxes in a particular column inside a GridView control before submitting a form.

Using the code

I have used a TemplateField inside the GridView and put a CheckBox in the ItemTemplate of the TemplateField.

The HTML code looks like this:

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False">
   <Columns> 
      <asp:BoundField HeaderText="n" DataField="sno"> 
       <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="50px" />
          <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
      </asp:BoundField>                
       <asp:TemplateField HeaderText="Select">
            <ItemTemplate>
               <asp:CheckBox ID="chkBxSelect" runat="server" />
            </ItemTemplate>
            <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" />
            <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
        </asp:TemplateField>
     </Columns>
  </asp:GridView>
 <asp:Button ID="btnPost" runat="server" Text="Post" 
             OnClientClick="javascript:return TestCheckBox();"
             OnClick="btnPost_Click" />

Attach a OnClientClick event to the button [btnPost]:

<asp:Button ID="btnPost" runat="server" Text="Post" 
            OnClientClick="javascript:return TestCheckBox();"
            OnClick="btnPost_Click" />

Add this JavaScript in the page’s head section:

<script type="text/javascript">
   var TargetBaseControl = null;
        
   window.onload = function()
   {
      try
      {
         //get target base control.
         TargetBaseControl = 
           document.getElementById('<%= this.GridView1.ClientID %>');
      }
      catch(err)
      {
         TargetBaseControl = null;
      }
   }
        
   function TestCheckBox()
   {              
      if(TargetBaseControl == null) return false;
      
      //get target child control.
      var TargetChildControl = "chkBxSelect";
            
      //get all the control of the type INPUT in the base control.
      var Inputs = TargetBaseControl.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>

In the above script, the global variable TargetBaseControl has been initialized in the window.onload event in order to get the reference of the parent control [GridView]. The function TestCheckBox first gets the array of all ‘input’elements inside the parent control. After that, it iterates all the elements of the array and tests a condition, and if the condition is found to be true, it returns true indicating that at least one checkbox is checked inside the GridView; else it displays a message and returns false. The condition tests the elements of a specific type in a particular column inside the parent element.

Just download the sample application and enjoy coding! I hope you will like this article.

Features of this script

This script is cross-browser compatible and fast as it iterates elements of a specific tag inside a target element [GridView] rather than iterating in a whole form. It searches the elements of a specific type in a particular column of the target element [GridView].

Supporting browsers

I have tested this script on the following browsers:

Browsers.png

License

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

About the Author

Samir NIGAM

Team Leader

India India

Member

SAMIR NIGAM is a CodeProject MVP, a Microsoft Certified Technology
Specialist (MCTS)
as well as a Microsoft Certified Professional Developer (MCPD)
in C# for web-based applications. He is an insightful IT professional with
results-driven comprehensive technical skill having rich, hands-on work experience
in web-based applications using ASP.NET, C#, AJAX, Microsoft
Enterprise Library
, MS SQL Server 2005.
He has earned his master degree (MCA) from U.P. Technical University, Lucknow,
INDIA, his post graduate dipoma (PGDCA ) from Institute of Engineering and
Rural Technology, Allahabad, INDIA and his bachelor degree (BSc - Mathematics)
from University of Allahabad, Allahabad, INDIA.
He has good knowledge of Object Oriented Programming, 3-Tier Architecture
and Algorithm Analysis & Design as well as good command over cross-browser
client side programming using JavaScript.
Awards:



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 5 Pinmembersatish deverkonda21:25 26 Oct '10  
GeneralClient-Side Validation for the CheckBoxes Inside a GridView Pinmembersaiprasada0:25 26 May '09  
GeneralReally Nice PinmemberMember 38915461:45 16 Oct '08  
QuestionHow do I collect values for records with checkboxes selected server side? PinmemberMember 34028865:00 1 Jul '08  
AnswerRe: How do I collect values for records with checkboxes selected server side? PinmemberSAMir Nigam18:20 1 Jul '08  
GeneralRe: How do I collect values for records with checkboxes selected server side? PinmemberMember 340288623:11 1 Jul '08  
GeneralRe: How do I collect values for records with checkboxes selected server side? PinmemberSAMir Nigam23:24 1 Jul '08  
Questionif no click event then??? PinmemberMember 301315320:05 24 Jun '08  
Dear
 
I have no button click method.I call the button click through the following code .so how i call this if condition true.
 
btnprint.Attributes["onclick"] = "javascript:popUp2('RePrintTicket.aspx?TicketNo=' + document.getElementById('" + hdnTicketNo.ClientID + "').value, 800, 600);";
AnswerRe: if no click event then??? PinmemberSAMir Nigam18:21 26 Jun '08  
QuestionWhat happens if checkboxes exists outside and inside of the grid? Pinmembersrinath g nath3:49 1 May '08  
AnswerRe: What happens if checkboxes exists outside and inside of the grid? Pinmember Samir Nigam 19:05 1 May '08  
QuestionChanges in case of Wizard Control?? Pinmembersassyboy4:53 14 Feb '08  
AnswerRe: Changes in case of Wizard Control?? Pinmember Samir Nigam 17:17 14 Feb '08  
GeneralRe: Changes in case of Wizard Control?? Pinmembersassyboy21:39 14 Feb '08  
GeneralRe: Changes in case of Wizard Control?? Pinmember SAMir Nigam 18:01 21 May '08  
GeneralNice one Pinmemberإ#1587م#1575ع#1610ل/codeProject$$>18:55 5 Feb '08  
GeneralRe: Nice one [modified] Pinmember Samir Nigam 20:42 5 Feb '08  
GeneralSecurity notification PinmemberTuomas Hietanen4:01 30 Jan '08  
GeneralRe: Security notification Pinmember SAMir Nigam 18:02 21 May '08  
GeneralGreat Work PinmemberGunarathinam17:47 29 Jan '08  
GeneralRe: Great Work PinmemberSamir Nigam19:14 29 Jan '08  
GeneralVery good PinmemberDNhan2:00 29 Jan '08  
GeneralRe: Very good PinmemberSamir Nigam2:08 29 Jan '08  
GeneralNice concept Pinmemberjoohitha1:18 29 Jan '08  
GeneralRe: Nice concept PinmemberSamir Nigam2:06 29 Jan '08  

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.120604.1 | Last Updated 10 May 2008
Article Copyright 2008 by Samir NIGAM
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid