Search
11175 results 2621-2630
Forum
- 2nd Jun 2018Order a column that contains a range(a - b) based on the high value (b)Hi @crc2220 , Yep, easily done, like this: render: function(data, type, row, meta) { return (type === 'sort')? data.split('-')[1].trim() : data; } See example here, Cheers, Colin
- 31st May 2018DataTables Editor - Plugins - Select2: Why not clear the dropdown when needAjax === true?I have sort of solved the first
- 30th May 2018How to properly format and filter this server-side data?it to "false" restored sort and search functionality. Return
- 30th May 2018fetchStyle in Editor server-side Result classfetchAll() functions. Alternatively, some sort of Result->getStatement() function could
- 30th May 2018Footer Callback for Multiple Columnsthe current page? A sort of TOTAL/CURRENT sum for
- 28th May 2018sorting_disabled on 6th column of dataTablesit is attempting to sort? As Colin says, a
- 25th May 2018Array values for data-sort attributemakes numerical and alphabetical sort produce the same output.
- 25th May 2018how to get entire row to swap data with RowReorder?You would need to sort the table by the
- 25th May 2018How to prevent the page jumping to top when sortingand then click on sort, the page itself goes
- 24th May 2018Add columns.type num-fmt custom order infoAs for the sorting I figured it out as you said (thanks!), I'll post it here for reference : { "targets": 0, "render": function ( data, type, row, meta ) { console.log(data.split('%')[0]); return type === 'sort' ? data.split('/')[0] : data; } }