Search
11428 results 2001-2010
Forum
- 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
- 18th Aug 2013indivisual colum filter bugI'm not sure I understand what the bug is? Are you passing in the column data index to fnFilter rather than the visible index? Allan
- 13th Jun 2013how to specify option for select type in column filteri got it here is the solution { type: "select",bRegex:true,values: [{ value: '^Male', label: 'M'},{ value: '^Female', label: 'F'}]},
- 3rd Jun 2013filter highlighting (different class for even / odd rows)The specific code I'm using is that posted by "olragon"