Search
11152 results 291-300
Forum
- 9th Oct 2014Is it possible for DT to default sort order to a first sortable column?to specify a default sort. Allan
- 29th Sep 2014DataTables 1.10.1 and ColReorder sort indication problemfollowing (dataTables.colReorder.js): /* Data column sorting (the column which the sort for a given column
- 22nd Sep 2014table.column(colIdx).data().sort(), to sort by columnDefs:data:sort?I want to access the column().data() in the sort order defined for that column. Use: inTable.column( colIdx, { order: 'current' } ).data(); :-) The selector-modifier option can be very useful for this kind of thing. Allan
- 12th Sep 2014Table is loaded but sort and search doesn't work ( AJAX )example I can not sort and search ? Currently I
- 28th Aug 2014Natural Sort - Problem with decimal points in mixed stringsThe natural sort script split it wrong at line "xN = x.replace(re ..." and the next one! The split arrays are ["0", ".", "25", " Ah"] and ["0", ".", "7", " Ah"]! But it must be ["0.25", " Ah"] and ["0.7", " Ah"]!
- 28th Aug 2014Javascript Method Custom Sortuse the name space sorting (is that in the
- 28th Jul 2014Can dataTables sort price range columnOh, and the render function can be shortened to: render: function( data, type, row, meta ) { if (type == "sort" || type == "type") return parseFloat(data.replace(/[$,]/g, '')); else return data; }
- 10th Jul 2014How to sort a-b-c data in row (1.10.0)There is no option in DataTables to sort columns. Only rows can be ordered. If you need to order complex, non-numeric data, then you need to create a plug-in sorting method: http://legacy.datatables.net/development/sorting#type_based Allan
- 3rd Jul 2014Help with misaligned sort indicatorsduplicate and misaligned table sort icons were removed, now
- 16th Jun 2014Probable Bug: Disable sort on 1st columnYou can work around this by setting default sort. But it still looks like a valid issue.