Hello All,
This is the code that i use to find whether any checkbox is checked in gridview
 if($("table tr td:first-child input:checkbox:checked").length ==0)
 {
     alert("Select atleast one event to delete");return false ;
 }
 if(confirm('Are you sure! you want to delete the selected events(s)?'))
     return true;
 else
     return false ;
i select a checkbox in the first page and i navigate to the 2nd page and i click "Delete", it throws "select atleast one Channel to delete". Which Shouldn't!
Without paging it works fine. Any insight to implement this with paging?