Search
11405 results 5231-5240
Forum
- 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
- 11th Mar 2011Wordpress Pluginit t make it filter using the search page
- 11th Mar 2011Reset checkboxes after form is submitted and getting back to the table pageproblem is related to "Filter" feature. If I set
- 11th Mar 2011IE 8 Initialization IssuebProcessing": true, "oLanguage": { "sSearch": "Filter:" }, "aaSorting": [[1, 'asc']], "aoColumns":
- 9th Mar 2011Trying to search in the columns where existis tags DIVHow are you calling the filter? I've just put up an example with your mouseover link here: http://datatables.net/dev/div_search.html - If I search for "protoco" in the filter input box it appears to be filtering okay. Allan