Search
14021 results 7131-7140
Forum
- 9th Jan 2015Footer (Showing 0 to 0 of 0 entries) issue showing up in large data setsstrategy involves using Sphinx Search Engine with real time
- 8th Jan 2015way to programatically populate the filter box and then refresh?probably be to use search() which will programmatically set
- 7th Jan 2015Multi SQL Table / Dynamic querythat the filter will search for, which have the
- 7th Jan 2015Filter doesn't seem to actually work..can swap filter() for search() easy enough in the
- 6th Jan 2015scrollx width with scrollyYES YES it did the trick Something I picked up in the search for misaligned header and footer Thanks a lot
- 6th Jan 2015Server side and columns filter with text inputHey Finally i found This https://datatables.net/examples/api/multi_filter.html works, but you need to use .DataTable in place of .dataTable (all works with d, but not the search ... )
- 5th Jan 2015I am getting a style object null reference Why?scrollY": "330px", "scrollCollapse": true, "search": { "smart": false } }; if (level
- 4th Jan 2015I want to increase the number of columns?I tried columns rise up to 7 or 10! it was like I increased the number of columns to 7 or 10, then the search + paging disappear
- 27th Dec 2014Hiding rows with the Scroller extensionIf you want to remove rows from a DataTable, then the search API (search() and column().search()) is the way to do it. Alternatively you could also use a custom search plug-in if you need more advanced logic. Allan
- 22nd Dec 2014Custom filter buttons?In case it helps someone else, here's what worked for me: var table = $('#example').DataTable(); $('ul').on( 'click', 'a', function () { table .columns( 1 ) .search( $(this).text() ) .draw(); });