Search
11316 results 5161-5170
Forum
- 24th Mar 2011the problem with filtering large volumes of data (server-side)Bind the filter to focusout instead of keyup or whatever. That way you can change the value of the filter without tripping to the server.
- 23rd Mar 2011DataTables 1.7.6 releasedit didnt have a filter). I added in a
- 21st Mar 2011Getting a specific rowThanks a lot Allan, I had tried find(), and children(); filter() is the right function.
- 21st Mar 2011Can I only sort few columns?I also want to filter column A and D
- 20th Mar 2011Performance Issue with Not-Huge Tablebe okay with your filtering approach since the filter is cumulative. Just don't
- 17th Mar 2011Server-Side PHP PostgreSQL and sOffsetwhere I went to filter, it was trying to
- 16th Mar 2011server_side example not connected to front endiTotalDisplayRecords and iTotalRecords should be the same unless a filter is applied. It's trivial for DataTables to do aaData.length - so there is no need to say how many rows are in the JSON reply. Allan
- 15th Mar 2011error: 'aoPreSearchCols[...]' is null or not an objectthe column I was filtering on. One fix is
- 15th Mar 2011catch text returned from server side Ajax call?sSource, aoData, fnCallback ) { // get filter ID var filter_id = $('#storedFilter_id').val();
- 14th Mar 2011detecting changes in search boxYou can use fnDrawCallback to find when the table is redrawn, and there is a settings property (this.fnSettings().bFiltered) which indicates if the filter has been updated. For example: [code] "fnDrawCallback": function ( oSettings ) { if ( oSettings.bFiltered ) { ... } }, [/code] Allan