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.
26 lines
669 B
JavaScript
26 lines
669 B
JavaScript
13 years ago
|
/**
|
||
|
* Sort numeric data which has a percent sign with it.
|
||
|
* @name Percentage
|
||
|
* @author <a href="http://jonathanromley.org/">Jonathan Romley</a>
|
||
|
*/
|
||
|
|
||
|
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
|
||
|
"percent-asc": function ( a, b ) {
|
||
|
var x = (a == "-") ? 0 : a.replace( /%/, "" );
|
||
|
var y = (b == "-") ? 0 : b.replace( /%/, "" );
|
||
|
x = parseFloat( x );
|
||
|
y = parseFloat( y );
|
||
|
|
||
|
return ((x < y) ? -1 : ((x > y) ? 1 : 0));
|
||
|
},
|
||
|
|
||
|
"percent-desc": function ( a, b ) {
|
||
|
var x = (a == "-") ? 0 : a.replace( /%/, "" );
|
||
|
var y = (b == "-") ? 0 : b.replace( /%/, "" );
|
||
|
x = parseFloat( x );
|
||
|
y = parseFloat( y );
|
||
|
|
||
|
return ((x < y) ? 1 : ((x > y) ? -1 : 0));
|
||
|
}
|
||
|
} );
|