Selecting CheckBoxes Inside GridView Using JQuery
By AzamSharp
Views: 1505

 

In this video Mohammad Azam will demonstrate how to select checkboxes inside the GridView control using JQuery library.

Code:

$(document).ready(function()
{
   $("#chkAll").click(function()
   {
        this.checked = !(this.checked);
       
        $("#gvCategories input:checkbox").attr("checked",
        function()
        {
            this.checked = !(this.checked);
        });
   });
       
});

[Play the Video]

 

By AzamSharp




Enter Comment/Feedback
  •  
  •  
  •  
  •  
  •  

Comments/Feedbacks





Join WebHost4Life.com







Copyright GridViewGuy 2007-2008