Search
11318 results 4671-4680
Forum
- 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)
- 12th Feb 2013where to put .button() callI'm not adding rows dynamically but the data is retrieved from a server, so every filter, sort, or paging operation triggers a redraw. Since that's the case, I guess you're suggesting fnCreatedRow. I'll give that a shot.
- 4th Feb 2013Adding labels to TabletoolsHey Allan, Thanks, yes I meant the column filter widget. I'll poke around in the code perhaps? Thanks