Search
11332 results 1841-1850
Forum
- 12th Nov 2020Datatable dont draw my column when i choose my select filterWe'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
- 22nd Oct 2020Custom Filter with Re-ordered ColumnsThat works! Thank you very much for your help!
- 21st Oct 2020Fixed Columns (Multiple columns with Filter Header)You don't have the CSS for FixedColumns being loaded on your page. You've also got a bit of a mix between the DataTables and Bootstrap styles. I would suggest using the download builder to make sure you get all the required and correct files for your use case. Allan
- 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