Search
11455 results 1961-1970
Forum
- 11th Feb 2017Multi select filter with changing dataDid you try: $('input').val('').change(); $(".yourtable").DataTable().search("").draw();
- 22nd Jan 2017Does the DataTable run any process when search filter is active?Hi Allan! Thanks for reply! I was working in the test case when I realize what's happening! The code that generate the input, was bubbling and generate more than one element, than, when the first element losts the focus, it triggers the blur event. I rewrite the code to avoid this and everything works perfect now! Thanks for your attention and for this amazing plugin!
- 5th Jan 2017Save sort order, sort expression and filterhttps://datatables.net/reference/option/stateSave
- 21st Nov 2016Trying to filter individual columns on a DT using a Sharepoint REST callAnyone any ideas ? TIA
- 6th Oct 2016Search filter issue with Turkish characters "ı" , "İ" , "Ş" , "ş" , "Ğ" , "ğ"single table for datatable: ~196,687 total records of all database: 2,333,990... Datatable is perfect tool for me. For this reason, I do not wanna use server-side pagination or another method. :neutral: I accepted MySQL bug for now. "SET NAMES utf8" method does not work for Turkish characters "ı", "ü", "ğ". I still have not found a solution :(
- 22nd Sep 2016Complex filter logicFor complex client-side filtering you need to use a custom search plug-in. A UI for that is something I hope to introduce in future (although it will probably be next year). Regards, Allan
- 1st Sep 2016Filter and remove duplicates contents of Dropdown list in create newFor complex queries that looks about as good as it gets :-) Allan
- 3rd Aug 2016How do I hide the default filter and make changes to other dom elementsI don't see any reason why not. Just pass it in like you would do for any function you define? Allan
- 1st Aug 2016regex filter doesnot workSounds like you are using server-side processing in which case you would have to do the regex filtering on the server-side. Thanks Tom
- 15th Jul 2016Dom Filter feature pluginHi, Nicely done. I think the only other way of doing it currently would be to modify the DOM with a little bit of jQuery after the table has been created, which would also be valid. A plug-in could be used to see the init event and perform that action automatically. Allan