≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Does the search box (bFilter) have to display in order to filter?
Does the search box (bFilter) have to display in order to filter?
SABmore
Posts: 5
Questions: 0
Answers: 0
August 2011
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
fbas
Posts: 1,094
Questions: 4
Answers: 0
August 2011
take out 'f' from the sDom
[code]
$(document).ready(function() {
$('#example').dataTable( {
"sDom": 'lrtip ' // default is 'lfrtip'
} );
} );
[/code]
SABmore
Posts: 5
Questions: 0
Answers: 0
August 2011
Awesome. Thanks fbas!
This discussion has been closed.
Replies
[code]
$(document).ready(function() {
$('#example').dataTable( {
"sDom": 'lrtip ' // default is 'lfrtip'
} );
} );
[/code]