How to hide filter and table information
How to hide filter and table information
bittersour
Posts: 6Questions: 3Answers: 0
Hi,
How can I hide filter and table information? My codes is as below.
$(document).ready(function() { var table = $('#example').DataTable( { scrollY: "300px", scrollX: true, scrollCollapse: true, paging: false } ); new $.fn.dataTable.FixedColumns( table, { leftColumns: 2 } ); } );This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
That shouldn't be all the initialization code, you should have "dom" somewhere in there if you want to specify things to turn off. http://datatables.net/reference/option/dom. My guess is that it defaults to
And you want to leave off the F (to turn the filter off) and I (to turn the information off).