Search
11345 results 4691-4700
Forum
- 21st Feb 2013load data from CSV server sidedoes not do a filter, the server-side will send
- 20th Feb 2013SORT COLUMN NUMBERsort, type checking and filter). See: http://datatables.net/blog/Orthogonal_data for more
- 20th Feb 2013checkbox - Select checkboxes all only works once?Update. Got it working. Had missed out an "oTable" reference in my last update. For reference: $('input', oTable.$('tr', {"filter": "applied"} )).prop('checked',this.checked); Got me going. Matt
- 20th Feb 2013DataTables server-side processing:DataTable warning:JSON data from server could not be parsed.Multi filter just calls fnFilter - so if you can't solve the issue with fnFilter, the multi filter won't help. Have you implemented column filtering in your server-side processing script? Allan
- 15th Feb 2013Searches come up with null as the value that shows in the search box when I go back to my search pagnull? Is it those filters that are showing the problem, or the DataTables core filter? Allan
- 15th Feb 2013_fnGetCellData doesn't test for column existenceI've misunderstood. So the filtering that is applied is a column filter, but it is coming
- 14th Feb 2013Find the NEXT FILTERED result when using keydown functionfixed it [code] MoveArrows = function () { $(document).keydown(function(e){ if (e.keyCode == 40) { chosen++; // console.log($(".selected").closest("table").attr("id")) $('tr').removeClass('selected'); $('#selectedSets tbody').find('tr').eq(chosen).addClass('selected'); SelectCard(formatTable.fnGetData( chosen )) return false; } if (e.keyCode == 38) { chosen--; $('tr').removeClass('selected'); // var data = formatTable._('tr:next', {"filter": "applied"}); // console.log(data) $('#selectedSets tbody').find('tr').eq(chosen).addClass('selected'); SelectCard(formatTable.fnGetData( chosen )) return false; } }) } [/code]
- 14th Feb 2013DataTables 1.10 redesign suggestionsexample table.filter( 'Hello' ); would filter all tables that have
- 14th Feb 2013How to make Datatable pagination to neglect hidden rows?This is not currently possible in DataTables - all rows are treated equally. If you want rows removed front h table, you should use DataTables' filtering controls to filter those rows out rather than setting display:none. Allan
- 13th Feb 2013Display length and sorting the tablecould use a custom filter method: $.fn.dataTableExt.afnFiltering.push(function(oSettings, aData, iDataIndex)