Click here to Skip to main content
15,886,362 members
Articles / Web Development / ASP.NET
Tip/Trick

Select all checkbox in the data grid

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
18 Apr 2011CPOL 17.5K   6   1
This is an example to make a "Select All" check box using JQuey
Prerequisite: include JQuery script file

<script src="jquery-1.4.2.min.js" type="text/javascript"></script>


This tip is to create a "Check All" checkbox which will select all the checkboxes in the grid or on the page or if you uncheck individual check box, then it will uncheck the "Select All"check box.

If the check box is disabled, then it will not inlude this in the selection.

This is the aspx code:

<script language="javascript" type="text/javascript">
    $(document).ready(        
        
        function(){
        $('#chkSelectAll').click(
                function(){
                   $('input:checkbox:not(:disabled)').not('#chkSelectAll').click(
                       function()
                       {
                            if($('input:checkbox:not(:disabled, :checked)').not('#chkSelectAll').length == 0)
                                $('#chkSelectAll').attr('checked', true)
                            else    
                                $('#chkSelectAll').attr('checked', false)
                       }
                   ).attr('checked', this.checked);
                })
        } 
);
</script>

<table width="150" id="ttt">
     <tr>
          <td>
               <asp:CheckBox ID="chkSelectAll" runat="server" Text="Select All" />
                    <br />
                    <asp:CheckBox ID="chkBx1" runat="server" Text="CheckBox 1" Enabled="false" />
                    <br />
                    <asp:CheckBox ID="chkBx2" runat="server" Text="CheckBox 2" />
                    <br />
                    <asp:CheckBox ID="chkBx3" runat="server" Text="CheckBox 3" />
                    <br />
                    <asp:CheckBox ID="chkBx4" runat="server" Text="CheckBox 4" />
                </td>
            </tr>
        </table>

License

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


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionIE6 browser comptability issue Pin
Poonamchand Soni30-Aug-13 0:31
Poonamchand Soni30-Aug-13 0:31 

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.