Search
11366 results 4671-4680
Forum
- 23rd Apr 2013Is there a way to format numbers without knowing column indices ahead of time?format(data); } else if (type === 'filter') { return data + ' ' + format(data); } return
- 22nd Apr 2013Initial sorting on date-rangeThe column filter plug-in is not supported in these forums as it is a third party plug-in. I'd suggest you open an issue on that project's bug tracker. Allan
- 22nd Apr 2013Remove certain rows from sortI have no discovered i also need to remove these from the filter as well
- 18th Apr 2013sum filtered rows/columnssumColumn() { var dataArray = oTable._('td:nth-child(4)', {"filter": "applied"}); var sum = 0;
- 17th Apr 2013mRender called multiple timesYes, it is called multiple times because it can be used to get different data types (i.e. sort, filter, display etc data). It is intentional that mRender will be called whenever DataTables needs some data from your data source. Allan
- 10th Apr 2013DataTables Editor with previous / next buttons + fnFilterThanks, I changed 2 lines on next and previous and it worked well : [code] var index = table.$('tr', {"filter": "applied"}).index(row);[/code] and [code] tt.fnSelect( table.$('tr', {"filter": "applied"})[index-1] );[/code]
- 9th Apr 2013TableTools date rangeCSV works fine without filter range. When i fill
- 9th Apr 2013Apply server side filters on clickThank you allan, do you have a release date for 1.10? I am happy to suffer the additional server hit at the moment as it is very rare that someone will apply more than one filter.
- 3rd Apr 2013How to show "Show X entries" and Showing 1 to X of X entries on the top and bottom positionfirst line and the filter on the next line.
- 3rd Apr 2013Not able to load ajax json data into DataTablesname:'str', value:str });} }); $("#filter").change(function(){ str=[]; $('#filter :checked').each(function() { str.push($(this).val()); }); oTable.fnReloadAjax("filter_prange.php"); }); }); [/code]