Search
11090 results 291-300
Forum
- 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.
- 30th May 2014SS Column Sort Requests in 1.10multicolumn select for the sort, and the ajax calls
- 23rd May 2014Missing Sort ArrowsSee thread 21040 for the fix for IE8 with width assigned and the sort icons not being shown. Allan
- 23rd May 2014iimanii - Support for custom sort plugins is being removed? Or is it just a bugIt seems that using "mRender" would solve the issue in a more efficient way, If I pre-compute the sort values function mDataCustom(data, type, row) { if(type === 'sort') { return data._sort } return data; }