Search
14048 results 1271-1280
Forum
- 22nd Jan 2015Highlighting search and stateSave: trueI've just updated the search highlighting plug-in for DataTables
- 21st Jan 2015Is there a way to preserve the bFilter search field?You can use this method, though it also saves which page you are on in addition to the search field.
- 20th Jan 2015datatables 1.10 - search highlight on sAjaxSource JSON datasame functionality to highlight search results. Has anyone tried
- 1st Jan 2015How to do custom search on multiple datatable in a single page using date range ?started with a custom search plug-in. Since your tables
- 30th Dec 2014Server-side individual column searchhe value to search on for each column
- 4th Dec 2014Alphabet input searchvar alphabet = $('<div class="alphabet"/>').append( 'Search: ' ); $('<span class="clear active"/>') .data(
- 2nd Dec 2014How do I assign search value with javascript?would use: this.table.column( 9 ).search( min+"X" ).draw(); Allan
- 21st Nov 2014Exclude expression onglobal searchto find all the search options like [^*] in the
- 18th Nov 2014Linking to a specific row or searchYou can search the forums by using the "Search" input box at the top of the page.
- 11th Nov 2014Datatables Filter - Exact search and smart searchThis is how i solved my problem. Below is the helper function i created: def filter_helper(data) return "#{data[:name]} = :search", search: "#{params[data[:dt_name]].gsub!(/^\"|\"?$/, '') }" if "#{params[data[:dt_name]]}".chars.first == "\"" return "#{data[:name]} like :search", search: "%#{params[data[:dt_name]]}%" if "#{params[data[:dt_name]]}".chars.first != "\"" end