Search
11331 results 1981-1990
Forum
- 23rd Apr 2014Clear search filterover the column input filters. So also my 1.10
- 22nd Apr 2014Client side column filter stringI too need the same scenario.... avsln have you got result
- 3rd Apr 2014Inserting content between "showing x entries" and filter boxThanks allan . I am able to get the buttons there following your sDom instruction with some CSS play.
- 2nd Apr 2014Trying to load once via ajax from server and then sort and filter on client side.It was something simple. The iDisplayLength parameter was being tested for -1, but was being handed a 0. The ajax handler was expecting pagination parms and when the query asked for 0 records, that's what it got back. Thanks!
- 26th Feb 2014Find filter locationThis is positioned in the sDom definition - see the docs or search the forum.
- 15th Feb 2014bFilter does not filter new cellsFor the cell ID you would need to directly manipulate the DOM, like you would with a plain HTML table, since DataTables doesn't really care about the id. However, for the HTML content of the cells, use fnUpdate . Allan
- 4th Jan 2014Include space in filter stringFigured it out. Turn smart filtering off, bRegex as true treats search string as regular expression: [code]"oSearch": { "bSmart": false, "bRegex": true }[/code]
- 31st Dec 2013IE >=10 "clear" cross in Search does not update filter result@allan: thanks, it works in 1.10-dev
- 26th Dec 2013Filter instead of hide/remove rows, just highlightNo, sorry. There is no way using the DataTables to do that. You would need to create a custom filtering implementation, which would involve removing the current filtering I suspect. Allan
- 24th Nov 2013Change search criterion on a specific column filterThis example I think will help: http://datatables.net/release-datatables/examples/plug-ins/range_filtering.html . If you need to perform filtering on logic other than a straight match, custom filtering like int he example is the way to go in DataTables. Allan