Search
11430 results 1771-1780
Forum
- 20th Feb 2024Searchbuilder - server-side filter with auto-completeI was able to get this to work. The code is looking for keypress event to work with live searching. I added this line after setting the value and it worked: this.dispatchEvent(new KeyboardEvent('keypress'));
- 25th Oct 2023Rendering Arrays in Search Builder, to filter by equals values, does not filter correctly.No - it looks like there is an error there. Thanks for letting me know about that. Allan
- 17th Oct 2023Export: only visible columns when I have others filter to evaluateEdit: example for multiple classes columns: [ ':not(.act,.act2):visible' ]
- 30th Sep 2023Search Box Sizing (filter)Maybe this will help someone... in the initComplete, and anytime the table is redrawn jQuery('#yourTableTable_filter').find("input").attr('size',6);
- 29th Sep 2023Hello, am new to jquery but i want to add date range filter. my table picks data from a jason fileI would suggest you use SearchBuilder if you want to add complex filtering. Allan
- 25th Sep 2023Filter by columns broke responsiveit took me a long time, but somehow I managed it, it works as it should, thank you.
- 14th Sep 2023Custom search filter - ServersideWhen you use draw() with server side processing an ajax request is sent to the server to get the rows to be displayed on the page. The server will respond with the rows to display and other information for Datatables to understand the number of records and display the proper paging buttons. See the Server Side Processing protocol docs for details. The additional parameters will be sent to the server script. You will need to update your Django script to retrieve the parameters to use them has part of the data query for the date range. The Django script will return the rows to display and additional information as described in the above link. Datatables will display the rows. There is nothing else to do on the client side. Kevin
- 29th Aug 2023SearchBuilder: Dropdown list filter not working when force search on enter is enabledSeems a bit buggy to me, thanks for letting us know. I've raised it internally (DD-2690 for my reference) and we'll report back here when there's an update. Colin
- 22nd Jul 2023Is it possible to set a column search filter with Vue 3?is App.vue. By search filters, do you mean having
- 11th Jul 2023Why range filter for "Score" column is not showing up?The code is trying to place the inputs into the footer but you don't have a tfoot element defined. Updated example with a tfoot. https://live.datatables.net/vadutezo/2/edit Kevin