Search
14049 results 3131-3140
Forum
- 27th May 2015How to exclude hidden column from searchBecause I'm an idiot! :) We've all been there.... :-)
- 23rd Apr 2015Is there an API call that will update DataTables search index based on changes to data-searchThanks, Allan! That worked perfectly!
- 12th Mar 2015FixedColumns Complex Headers issues in IE8 when Search is UsedAnyone who managed to fix this? Thank you so much!
- 23rd Feb 2015Display results on table based on database searchThank you for your help. Much appreciated. Managed to resolve this.
- 28th Jan 2015Server side scroller + search and orderingI'm not very familiar with using the dom option but that is probably what is causing it. Maybe try adding f to it, dom: "rtifS"? Just a guess. If that doesn't work, I bet removing that whole option would restore your filtering input.
- 1st Dec 2014Use combobox or dropdown list to filter or search the tableYou can use the filter_container_id property of my yadcf plugin, take a look http://yadcf-showcase.appspot.com/DOM_source.html notice that I moved the third column filter to the < div id="external_filter_container_wrapper" > , see examples on the showcase and code snippets below them (read docs)
- 10th Jul 2014Custom Filtering - Range Search Performance IssueThe filtering options in DataTables are easily its weakest point at the moment and I plan to give it an overhaul in future. Currently there isn't really a workaround other than to modify the core code, so that it calls your function only once and you can do the loop, rather than DataTables doing the loop. Allan
- 18th Jun 2014simulate the datatable filter search ?Looks like i was looking for oSearch.
- 18th Jun 2014Datatable filter search on two columns ?DataTables' column filtering is an AND operation - there is no option for OR filtering in the built in filtering. For that you would need a custom filtering plug-in: http://datatables.net/examples/plug-ins/range_filtering.html Alternatively, if you are only using 4 columns and two aren't filterable, you could just use the global filter? Allan
- 6th Jun 2014Disable search on all but on columnThis seems to have done the trick - is this acceptable "aoColumns": [ { "bSearchable": false }, null, { "bSearchable": false } ],