Skip to main content

Selecting all Checkboxes within gridview

Hi friends,
 As we know while developing code for application we need to do lots of customization according to client requirement.,
So today i'm sharing some gridview concepts
when in gridview of web page contains checkbox,& if client's requirement is to select or unselect all rows of data by selecting or unselecting header checkbox. for this we need to write javascript code that will do this task.
I'm giving some syntax for that.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<script type="text/javascript">
        function SelectAllCheckboxes(chk) {
            $('#<%=gvSubject.ClientID %>').find("input:checkbox").each(function()
             {
                if (this != chk) {
                    this.checked = chk.checked;
                }
            });
        }
    </script>

Comments

Popular posts from this blog

Creating package in Oracle Database using Toad For Oracle

What are Packages in Oracle Database A package is  a group   of procedures, functions,  variables   and  SQL statements   created as a single unit. It is used to store together related objects. A package has two parts, Package  Specification  and Package Body.

Resolving 'Setup Account Privileges' error while installing SQL Server

A new installation of Microsoft SQL Server 2012 or Microsoft SQL Server 2008 R2 fails You see the following error message when you try to install a new instance of SQL Server 2012 or SQL Server 2008 R2: Rule "Setup account privileges" failed.

Creating Oracle stored Procedures using TOAD for Oracle

In a database management system, a  stored procedure  is a set of Structured Query Language (SQL) statements with an assigned name that's stored in the database in compiled form so that it can be shared by a number of programs. The use of  stored procedures  can be helpful in controlling  access to data, preserving  data integrity  and  improving  productivity.