Search
11430 results 1841-1850
Forum
- 17th May 2021Bug in SearchPanes (Bootstrap 4): Filter input is not clearedWe tend to make releases every month or two, so it would be worth checking back regularly. You could also download the nightly build and host them locally, as that would give you the consistency of the script. Colin
- 6th May 2021How to filter the column with a buttonThanks worked! May Allah Bless You
- 27th Apr 2021Is it possible to filter columns as one filters rows?Thanks kthorngren. I was thinking there might be an easier way, but can do it in this way.
- 19th Apr 2021scrollY and column filterthanks a bunch!!!
- 3rd Apr 2021Delay SearchBuilder FilterYep, if you could PM myself or Allan, we can take a look, Colin
- 31st Mar 2021My data is returning through ajax i want to add column level filter how can i add it ?Take a look at these two examples: https://datatables.net/examples/api/multi_filter.html https://datatables.net/examples/api/multi_filter_select.html Kevin
- 29th Mar 2021Custom order of options in a dropdown filterYou're a legend. Thank you so so much for your help :smile:
- 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 :(