Search
11430 results 1861-1870
Forum
- 5th Oct 2020Drawing Error upon Using External FilterThere certainly is a way to fix this ... but not without your code, a link to a test page or a working test case showing the issue (see forum rules).
- 5th Oct 2020Select Filter "alphabretic" orderIt works :) kthorngren I own you a beer or a cafe ;)
- 3rd Oct 2020How using range datepicker jquery UI to filter datatable boostrap4 ?Thanks Alan. That fixed the responsive related error.
- 1st Oct 2020Select list do not filter data table !?We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 29th Sep 2020Angular 6 DataTables initially display but filter controls does not workTake look at this also stackoverflow.com/questions/44940021/data-table-is-showing-no-data-available-in-table-using-angular
- 28th Aug 2020Add wildcard % search to a drowdown filter to specific columnBrilliant. Thank you so much it does work. In case someone else needs it: var select = $('<select><option value=""></option></select>') .appendTo( $(column.footer()).empty()) .on( 'change', function () { var val = $.fn.dataTable.util.escapeRegex( $(this).val() ); column .search( val ? '^'+val+'.*$' : '', true, false ) .draw(); } ); if(column.index() == 5){ select.append( '<option value="Web">Web%</option>' ) } column.data().unique().sort().each( function ( d, j ) { select.append( '<option value="'+d+'">'+d+'</option>' ) } ); } ); }
- 17th Jul 2020search filter with similar text valuesThe code in the Column Search with Select example uses a regex search and should search specifically for the value selected. It uses this code: column .search( val ? '^'+val+'$' : '', true, false ) .draw(); How are you searching? Please post a test case replicating the issue so we can see exactly what you have and to offer suggestions. https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case Kevin
- 25th Jun 2020I Have dropdown in table cells, how to add dorpdown value to a custom filter paneThanks
- 29th May 2020Filter Date Range From JSONAlso, example here, Colin
- 19th May 2020SearchPanes filter input font size bug?OMG, stupid me... thank you!