Documentation for bFilter
Documentation for bFilter
mattclements
Posts: 7Questions: 0Answers: 0
Hello there,
On your features page (http://datatables.net/usage/features) there is the following:
"Enable or disable filtering of data. Filtering in DataTables is "smart" in that it allows the end user to input multiple words (space separated) and will match a row containing those words, even if not in the order that was specified (this allow matching across multiple columns). Note that if you wish to use filtering in DataTables this must remain 'true' - to remove the default filtering input box and retain filtering abilities, please use"... but then no details of the alternative.
I am after using oSearch to set the automatic filter, but not show the standard field.
Regards,
Matt
On your features page (http://datatables.net/usage/features) there is the following:
"Enable or disable filtering of data. Filtering in DataTables is "smart" in that it allows the end user to input multiple words (space separated) and will match a row containing those words, even if not in the order that was specified (this allow matching across multiple columns). Note that if you wish to use filtering in DataTables this must remain 'true' - to remove the default filtering input box and retain filtering abilities, please use"... but then no details of the alternative.
I am after using oSearch to set the automatic filter, but not show the standard field.
Regards,
Matt
This discussion has been closed.
Replies
Allan
This seems to be that by using sAjaxSource to pull a dynamic JSON file, the oSearch doesn't get passed to the server, as bFilter is set to false.
Allan
I have changed this to:
[code]"sDom":'<"H"lr>t<"F"ip>',[/code]
and all is well.
On the features page (/usage/features) could the bFilter section be changed from:
[quote]Enable or disable filtering of data. Filtering in DataTables is "smart" in that it allows the end user to input multiple words (space separated) and will match a row containing those words, even if not in the order that was specified (this allow matching across multiple columns). Note that if you wish to use filtering in DataTables this must remain 'true' - to remove the default filtering input box and retain filtering abilities, please use[/quote]
to
[quote]Enable or disable filtering of data. Filtering in DataTables is "smart" in that it allows the end user to input multiple words (space separated) and will match a row containing those words, even if not in the order that was specified (this allow matching across multiple columns). Note that if you wish to use filtering in DataTables this must remain 'true' - to remove the default filtering input box and retain filtering abilities, please use sDom[/quote]
Allan