fnFilter without Search
fnFilter without Search
BFG86
Posts: 10Questions: 0Answers: 0
Hello everyone. =)
How to use search without displaying the search field in the table header?
To hide the search in the table header do I need the "bFilter":false, but it also disables the search option(oTable.fnFilter( 'test string' );).
Thank you!
How to use search without displaying the search field in the table header?
To hide the search in the table header do I need the "bFilter":false, but it also disables the search option(oTable.fnFilter( 'test string' );).
Thank you!
This discussion has been closed.
Replies
[code]
$("#tevent").dataTable({
"bDeferRender": true,
"bPaginate": false,
"bFilter": false,
"bJQueryUI": true,
"bInfo": false,
"sScrollY": 200,
"bScrollCollapse": true
});
[/code]
Allan