Hi,
I have a table (server-side populated) with a checkbox column. By default, they're set to unchecked. The problem is, when I check the boxes and change pages, the datatable does not preserve which boxes are checked. So, the checked boxes on page 1 become unchecked when moving to page 2.
Any thoughts? I looked around and I know this is a well-known problem on IE6, but I don't see any current issues regarding this.
Best,
Rob
I have a table (server-side populated) with a checkbox column. By default, they're set to unchecked. The problem is, when I check the boxes and change pages, the datatable does not preserve which boxes are checked. So, the checked boxes on page 1 become unchecked when moving to page 2.
$('#my_table').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sPaginationType": "full_numbers",
"bjQueryUI": true,
// loading with flask and mongodb
"sAjaxSource": $SCRIPT_ROOT + "/_load_my_table",
"aoColumns": [
null,
null,
null,
null,
null,
null,
null,
{"bSortable": false,
"bVisible": true,
"sClass": 'center'}
],
"oLanguage": {
"sSearch": ""
},
"sDom": 'lf<"toolbar"><"top">rt<"bottom">ip<"clear">'
} );
// custom styling
$('.dataTables_filter input').attr("placeholder", "Filter Results...").attr("class", "datatables_custom_filter");
// <a> tags that add buttons to the toolbar
$("div.toolbar").html('...');
Any thoughts? I looked around and I know this is a well-known problem on IE6, but I don't see any current issues regarding this.
Best,
Rob