Click here to Skip to main content
15,885,366 members
Articles / Web Development / HTML
Article

Client-Side Validation for the CheckBoxes Inside a GridView

Rate me:
Please Sign up or sign in to vote.
3.72/5 (38 votes)
9 May 2008CPOL1 min read 221.3K   1.2K   70   48
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.NET
<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.NET
<asp:Button ID="btnPost" runat="server" Text="Post" 
            OnClientClick="javascript:return TestCheckBox();"
            OnClick="btnPost_Click" />

Add this JavaScript in the page’s head section:

JavaScript
<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)


Written By
Technical Lead Infogain India Pvt Ltd
India India


Samir NIGAM is a Microsoft Certified Professional. He is an insightful IT professional with results-driven comprehensive technical skill having rich, hands-on work experience n web-based applications using ASP.NET, C#, AJAX, Web Service, WCF, jQuery, Microsoft Enterprise Library , LINQ, MS Entity Framework, nHibernate, MS SQL Server & SSRS.



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, n-Tier Architecture, SOLID Principle, and Algorithm Analysis & Design as well as good command over cross-browser client side programming using JavaScript & jQuery,.



Awards:



Comments and Discussions

 
QuestionI need validation on multiple pages Pin
Member 1319557222-May-17 3:09
Member 1319557222-May-17 3:09 
Questionvalidate two gridviews' checkboxes Pin
Member 935134522-Sep-12 2:53
Member 935134522-Sep-12 2:53 
GeneralMy vote of 5 Pin
satish deverkonda26-Oct-10 21:25
satish deverkonda26-Oct-10 21:25 
GeneralClient-Side Validation for the CheckBoxes Inside a GridView Pin
saiprasada26-May-09 0:25
saiprasada26-May-09 0:25 
GeneralReally Nice Pin
NanoView16-Oct-08 1:45
NanoView16-Oct-08 1:45 
QuestionHow do I collect values for records with checkboxes selected server side? Pin
Member 34028861-Jul-08 5:00
Member 34028861-Jul-08 5:00 
AnswerRe: How do I collect values for records with checkboxes selected server side? Pin
Samir NIGAM1-Jul-08 18:20
Samir NIGAM1-Jul-08 18:20 
GeneralRe: How do I collect values for records with checkboxes selected server side? Pin
Member 34028861-Jul-08 23:11
Member 34028861-Jul-08 23:11 
GeneralRe: How do I collect values for records with checkboxes selected server side? Pin
Samir NIGAM1-Jul-08 23:24
Samir NIGAM1-Jul-08 23:24 
Questionif no click event then??? Pin
skumar_131124-Jun-08 20:05
skumar_131124-Jun-08 20:05 
AnswerRe: if no click event then??? Pin
Samir NIGAM26-Jun-08 18:21
Samir NIGAM26-Jun-08 18:21 
QuestionWhat happens if checkboxes exists outside and inside of the grid? Pin
Srinath Gopinath1-May-08 3:49
Srinath Gopinath1-May-08 3:49 
AnswerRe: What happens if checkboxes exists outside and inside of the grid? Pin
Samir NIGAM1-May-08 19:05
Samir NIGAM1-May-08 19:05 
QuestionChanges in case of Wizard Control?? Pin
sassyboy14-Feb-08 4:53
sassyboy14-Feb-08 4:53 
AnswerRe: Changes in case of Wizard Control?? Pin
Samir NIGAM14-Feb-08 17:17
Samir NIGAM14-Feb-08 17:17 
GeneralRe: Changes in case of Wizard Control?? Pin
sassyboy14-Feb-08 21:39
sassyboy14-Feb-08 21:39 
GeneralRe: Changes in case of Wizard Control?? Pin
Samir NIGAM21-May-08 18:01
Samir NIGAM21-May-08 18:01 
GeneralNice one Pin
Ismaeel Enjreny5-Feb-08 18:55
Ismaeel Enjreny5-Feb-08 18:55 
GeneralRe: Nice one [modified] Pin
Samir NIGAM5-Feb-08 20:42
Samir NIGAM5-Feb-08 20:42 
GeneralSecurity notification Pin
Tuomas Hietanen30-Jan-08 4:01
Tuomas Hietanen30-Jan-08 4:01 
GeneralRe: Security notification Pin
Samir NIGAM21-May-08 18:02
Samir NIGAM21-May-08 18:02 
GeneralGreat Work Pin
Gunarathinam29-Jan-08 17:47
Gunarathinam29-Jan-08 17:47 
GeneralRe: Great Work Pin
Samir NIGAM29-Jan-08 19:14
Samir NIGAM29-Jan-08 19:14 
GeneralVery good Pin
DaoNhan29-Jan-08 2:00
DaoNhan29-Jan-08 2:00 
GeneralRe: Very good Pin
Samir NIGAM29-Jan-08 2:08
Samir NIGAM29-Jan-08 2:08 

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.