Search
11405 results 4731-4740
Forum
- 25th Feb 2013CHECKBOX COLUMNBecause the filter removes HTML automatically. You
- 22nd Feb 2013Filtering with HTML entitiesremove the HTML before filtering, so you can actually filter on the HTML tags.
- 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