2015-05-17 20:32:53 +00:00
|
|
|
/*! Parser: jQuery Globalize - updated 5/17/2015 (v2.22.0) */
|
2015-05-02 20:15:56 +00:00
|
|
|
/* Extract localized data using jQuery's Globalize parsers; set
|
|
|
|
Globalize.locale( 'xx' ) prior to initializing tablesorter! */
|
|
|
|
/*jshint jquery:true */
|
2015-07-28 20:57:01 +00:00
|
|
|
/*global Globalize:false */
|
2015-05-02 20:15:56 +00:00
|
|
|
;( function( $ ) {
|
2015-07-23 04:29:51 +00:00
|
|
|
'use strict';
|
2015-05-02 20:15:56 +00:00
|
|
|
|
|
|
|
/*! jQuery Globalize date parser (https://github.com/jquery/globalize#date-module) */
|
|
|
|
/* demo: http://jsfiddle.net/Mottie/0j18Lw8r/ */
|
|
|
|
$.tablesorter.addParser({
|
|
|
|
id: 'globalize-date',
|
|
|
|
is: function () {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
format: function ( str, table, cell, cellIndex ) {
|
|
|
|
var c = table.config,
|
|
|
|
// add options to 'config.globalize' for all columns --> globalize : { skeleton: 'GyMMMd' }
|
|
|
|
// or per column by using the column index --> globalize : { 0 : { datetime: 'medium' } }
|
|
|
|
options = c.globalize && ( c.globalize[ cellIndex ] || c.globalize ) || {},
|
|
|
|
date = Globalize && Globalize.dateParser ? Globalize.dateParser( options )( str ) :
|
|
|
|
str ? new Date( str ) : str;
|
|
|
|
return date instanceof Date && isFinite( date ) ? date.getTime() : str;
|
|
|
|
},
|
|
|
|
type: 'numeric'
|
|
|
|
});
|
|
|
|
|
|
|
|
/*! jQuery Globalize number parser (https://github.com/jquery/globalize#number-module) */
|
|
|
|
/* demo: http://jsfiddle.net/Mottie/0j18Lw8r/ */
|
|
|
|
$.tablesorter.addParser({
|
|
|
|
id: 'globalize-number',
|
|
|
|
is: function () {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
format: function ( str, table, cell, cellIndex ) {
|
|
|
|
var c = table.config,
|
|
|
|
// add options to 'config.globalize' for all columns --> globalize : { skeleton: 'GyMMMd' }
|
|
|
|
// or per column by using the column index --> globalize : { 0 : { datetime: 'medium' } }
|
|
|
|
options = c.globalize && ( c.globalize[ cellIndex ] || c.globalize ) || {},
|
|
|
|
num = Globalize && Globalize.numberParser ? Globalize.numberParser( options )( str ) :
|
|
|
|
str ? $.tablesorter.formatFloat( ( str || '' ).replace( /[^\w,. \-()]/g, '' ), table ) : str;
|
|
|
|
return str && typeof num === 'number' ? num : str;
|
|
|
|
},
|
|
|
|
type: 'numeric'
|
|
|
|
});
|
|
|
|
|
|
|
|
})( jQuery );
|