HOW TO make columns in an ASP.NET GridView sortable with jQuery


         gridId = $("table[id$='grdEmployee']").attr("id");
         $('#' + gridid).tablesorter(); 
         $("#tablesorter").tablesorter({headers:{0:{sorter:false}}}); 


Also see:
Yours declaratively, GridView 
Beware of breaking changes in jQuery library versions 

Comments