Search
11332 results 1831-1840
Forum
- 29th Mar 2021footerCallback does not compute sum for a fixedColumn when filter is applied@martoo please see my answer in your other thread. Kevin
- 13th Mar 2021how can you make the search field only filter the data when there is exact match?There is the searchDelay option which will reduce the number of requests to the server. Also there is a debounce solution in this thread that you might find useful. Kevin
- 12th Mar 2021Add colunms filter to an existing server-side DataTablesHi Colin, I'll check the thread, otherwise I managed like this : // Setup - add a text input to each footer cell $('#example tfoot th').each( function () { var title = $('#example thead th').eq( $(this).index() ).text(); if ( title == 'Date' ) { iwidth = 180; } if ( title == 'Client' ) { iwidth = 100; } if ( title == 'Version' ) { iwidth = 60; } if ( title == 'Utilisateur' ) { iwidth = 100; } if ( title == '#SN' ) { iwidth = 100; } if ( title == '#Evenement' ) { iwidth = 300; } $(this).html( '' ); } ); PS : I definitivly have problems to format "Code" areas :(
- 11th Mar 2021Show Checkbox on the Searchpanes filterThank you Colin.
- 15th Feb 2021Issue when using both Search Panes and customer filter function (ext.search.push)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
- 22nd Jan 2021Modify SearchPanes according to filterThank you very much Kevin, it's just what I needed.
- 30th Nov 2020multi select filter in datatablesWe'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
- 25th Nov 2020SearchBuilder delete filter CSS misstylingHi @datatablejohn , That shouldn't be happening. As noted in the forum rules, please post a link to a running test case showing the issue so we can offer some help. 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. Thanks, Sandy
- 25th Nov 2020Server-Side and Search Filter RegexYep, it's not supported in the pre-supplied scripts. This thread here should help, there's a discussion on implementing it. Colin
- 13th Nov 2020DataTables Editor drop down filterDo you mean something like this example? Kevin