fnRowSelected on default "select_all" button?

fnRowSelected on default "select_all" button?

jrenautjrenaut Posts: 3Questions: 0Answers: 0
edited May 2011 in TableTools
Using the default "select_all" and "select_none" buttons, I want to click and unclick a checkbox in the row as the row is selected and deselected. The following is a snip from the initialization.
[code] "fnRowSelected": function ( node ) {
var checkbox = $(node).find('input:first');
$(checkbox).prop("checked", true);
},
"fnRowDeselected": function ( node ) {
var checkbox = $(node).find('input:first');
$(checkbox).prop("checked", false);
}[/code]
This code works fine if I click a row - both the select and deselect functions fire as expected. When I click the "select_none" button, fnRowDeselected fires as expected.

When I click the "select_all" button, fnRowSelected does NOT fire. Is this the intended behavior? Any way around this without going through all rows and setting the checkbox?
This discussion has been closed.