Can't select rows on 1+ pages
Can't select rows on 1+ pages
maykino
Posts: 10Questions: 2Answers: 0
Selecting rows works only on the first loaded page. When I go to 2, 3 etc it doesn't select anything. When I select to show more records at once from the dropdown, it allows to only select the first 25.
HEre is the debug:
http://debug.datatables.net/uzicij
HEre is the debug:
http://debug.datatables.net/uzicij
This discussion has been closed.
Replies
[code]
//Support
$(document).ready(function() {
//turn_on_icheck(checkboxClass);
var oTable = $('.data-table').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": '<""l>t<"F"fp>',
"aoColumnDefs": [{"bSortable": false, "aTargets": [0]}],
});
$( oTable.fnGetNodes() ).iCheck( {
checkboxClass:'icheckbox_square-blue'
} );
});
[/code]
iCheck might require the elements to be in the DOM I guess - I don't know I'm afraid.
Allan