Help with ColumnFilterWidgets

Help with ColumnFilterWidgets

jbatzel1jbatzel1 Posts: 3Questions: 0Answers: 0
edited October 2011 in Plug-ins
Can't seem to get this plug-in to work. The filters come up in the table headers pulling in the right search options, though when I do a sort it comes up that no info was found. Any ideas?

[code]
$(document).ready(function() {
$('#example').dataTable({
"aaSorting": [[ 10, "desc" ]],
"bJQueryUI": true,
"iDisplayLength": 15,
"aLengthMenu": [[15, 25, 50, 100], [15, 25, 50, 100]],
"sPaginationType": "full_numbers", // [Edit: forgot the comma here when first posted]
"oLanguage": {
"sSearch": "Search: " },
"sDom": 'W<"H"lTfr>t<"F"ip>',
"oColumnFilterWidgets": {
aiExclude: [ 0, 6, 7, 8 ],
"iMaxSelections": 1
},
"oTableTools": {
"sSwfPath": "/Set-Dur/DataTables-1.8.2/media/swf/copy_cvs_xls_pdf.swf",
"aButtons": [
{
"sExtends": "collection",
"sButtonText": "Click to Save",
"aButtons": ["xls", "pdf"]
}]
}
} );
} );

[/code]
This discussion has been closed.