Search
13995 results 1261-1270
Forum
- 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
- 5th Nov 2014Place Text within Search BoxRight-click on your searchbox - "Inspect element" - will show
- 4th Nov 2014No X button to clear the search in Firefoxx event in non search input fields. JSFiddle example.
- 3rd Nov 2014Moving Search Bar to Left Side of TableHmmm...well it looks like I broke it again (I'm a novice here). If anyone can provide some insight on how to move the search bar to the left, I'd really appreciate. Thanks in advance.
- 30th Oct 2014search text box:You can get the value of the search box using search(). What you do with it is up to you :-) Allan
- 17th Oct 2014Search functionalityseem to make the search results not update accordingly
- 13th Oct 2014Exact word searchusing regex with the search() or column().search() methods if