You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
841 B
JavaScript
31 lines
841 B
JavaScript
/*! © SpryMedia Ltd - datatables.net/license */
|
|
|
|
import jQuery from 'jquery';
|
|
import DataTable from 'datatables.net';
|
|
|
|
// Allow reassignment of the $ variable
|
|
let $ = jQuery;
|
|
|
|
/**
|
|
* Although DataTables' internal numeric sorting works no problem on negative
|
|
* numbers, it does not accept positively signed numbers. This plug-in will
|
|
* sort just such data numerically.
|
|
*
|
|
* @name Fully signed numbers sorting
|
|
* @summary Sort data numerically with a leading `+` symbol (as well as `-`).
|
|
* @author [Allan Jardine](http://sprymedia.co.uk)
|
|
*
|
|
* @example
|
|
* $('#example').dataTable( {
|
|
* columnDefs: [
|
|
* { type: 'signed-num', targets: 0 }
|
|
* ]
|
|
* } );
|
|
*/
|
|
DataTable.ext.type.order['signed-num-pre'] = function (a) {
|
|
return a == '-' || a === '' ? 0 : a.replace('+', '') * 1;
|
|
};
|
|
|
|
|
|
export default DataTable;
|