Search
14021 results 7121-7130
Forum
- 21st Jan 2015Upgrading from 1.9.4 to 1.10.2 Confusions About What Is Deprecated and Their EquivalentsYou might find the conversion documentation useful. Also, keep in mind that search() doesn't do an automatic redraw like fnFilter did. You need to call draw(). Allan
- 21st Jan 2015How to setup a Select Filterfunction () { replaceTable .columns( 0 ) .search( this.value ) .draw(); } ); } ); }(jQuery)); and
- 20th Jan 2015How do I make compact even more compact?compile the SCSS, just search the CSS file for
- 19th Jan 2015how can i apply smartsearch filter on when checkbox is checked otherwise not?class="col-sm-6"> <b> Use Smart Search :</b> <input type="checkbox" class="global_filter"
- 16th Jan 2015HTML tags are removed , when searching/filteringi am using alphabet search like this http://www.datatables.net/blog/2014-08-26 . Everything
- 15th Jan 2015Bug: filter text is always shown in input box, even when it shouldn'tcould do is use search() (or the old fnFilter
- 15th Jan 2015does fnFilter cache the filter?being used for the search are cached by DataTables
- 14th Jan 2015Individual column searching (select inputs) Allowing for MultiSelectThat wasn't really what I had in mind - you would use $().map() to get an array of the selected values and then use column().search() with that array - for example table.column( 0 ).search( '^'+myArray.join('|')+'$', true, false ). Allan
- 13th Jan 2015Datatables Filter + stateSaveTypeError: Cannot read property 'search' of undefined. Not sure
- 13th Jan 2015Searching- an exact matchThank you very much Allan, this was the thing I was missing. .search( val ? '^'+val+'$' : '', true, false )