Does the search box (bFilter) have to display in order to filter?

Does the search box (bFilter) have to display in order to filter?

SABmoreSABmore Posts: 5Questions: 0Answers: 0
edited August 2011 in General
I'm using checkboxes to filter my table, but it seems to only work when bFilter is set to true, which displays the search box. I simply want to filter, but without the search box showing...how can I achieve this? Thanks!

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    take out 'f' from the sDom

    [code]
    $(document).ready(function() {
    $('#example').dataTable( {
    "sDom": 'lrtip ' // default is 'lfrtip'
    } );
    } );
    [/code]
  • SABmoreSABmore Posts: 5Questions: 0Answers: 0
    Awesome. Thanks fbas!
This discussion has been closed.