Yet Another Checkbox issue... sort/select all

Yet Another Checkbox issue... sort/select all

kpcrashkpcrash Posts: 11Questions: 0Answers: 0
edited August 2012 in DataTables 1.9
We have our table beautifully drawn out using jQueryUI set to true. Everything works great except for having a "Select All" checkbox in the header. We are using an ASP.Net GridView with appropriate settings to make everything compliant. Problem is when I click the checkbox, the sort code fires - but none of the code for the checkbox itself, even being declared explicitly.
[code]
$('.checkall', oTable.fnGetNodes()).click(function () {
alert('Check All!'); //never happens
var checkall =$(this).parents('.box:eq(0)').find(':checkbox').prop('checked', this.checked);
$.uniform.update(checkall);
});
[/code]
This discussion has been closed.