tablesorter/js/jquery.tablesorter.js

1097 lines
35 KiB
JavaScript
Raw Normal View History

2012-03-18 14:02:49 +00:00
/*!
2012-05-07 03:06:54 +00:00
* TableSorter 2.3 - Client-side table sorting with ease!
2012-03-18 14:02:49 +00:00
* @requires jQuery v1.2.6+
2011-06-22 23:19:27 +00:00
*
* Copyright (c) 2007 Christian Bach
* Examples and docs at: http://tablesorter.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* @type jQuery
* @name tablesorter
* @cat Plugins/Tablesorter
* @author Christian Bach/christian.bach@polyester.se
* @contributor Rob Garrison/https://github.com/Mottie/tablesorter
2011-06-22 23:19:27 +00:00
*/
2012-04-29 02:45:34 +00:00
!(function($) {
2011-06-22 23:19:27 +00:00
$.extend({
2012-04-29 02:45:34 +00:00
tablesorter: new function() {
2011-06-22 23:19:27 +00:00
2012-05-07 03:06:54 +00:00
this.version = "2.3";
2012-03-18 14:02:49 +00:00
2012-05-04 05:59:43 +00:00
var parsers = [], widgets = [], tbl;
2011-06-22 23:19:27 +00:00
this.defaults = {
2012-05-07 03:06:54 +00:00
// appearance
widthFixed : false,
// functionality
cancelSelection : true, // prevent text selection in the header
dateFormat : "mmddyyyy", // other options: "ddmmyyy" or "yyyymmdd"
sortMultiSortKey : "shiftKey", // key used to select additional columns
usNumberFormat : true, // false for German "1.234.567,89" or French "1 234 567,89"
// sort options
headers : {}, // set sorter, string, empty, locked order, sortInitialOrder, filter, etc.
ignoreCase : true, // ignore case while sorting
sortForce : null, // column(s) first sorted; always applied
sortList : [], // Initial sort order; applied initially; updated when manually sorted
sortAppend : null, // column(s) sorted last; always applied
sortInitialOrder : "asc", // sort direction on first click
sortLocaleCompare: false, // replace equivalent character (accented characters)
sortReset : false, // third click on the header will reset column to default - unsorted
sortRestart : false, // restart sort to "sortInitialOrder" when clicking on previously unsorted columns
emptyTo : "bottom", // sort empty cell to bottom, top, none, zero
stringTo : "max", // sort strings in numerical column as max, min, top, bottom, zero
textExtraction : "simple", // text extraction method/function - function(node, table, cellIndex){}
textSorter : null, // use custom text sorter - function(a,b){ return a.sort(b); } // basic sort
// widget options
widgetOptions : {
zebra : [ "even", "odd" ] // zebra widget alternating row class names
},
// callbacks
initialized : null, // function(table){},
onRenderHeader : null, // function(index){},
// css class names
tableClass : 'tablesorter',
cssAsc : "tablesorter-headerSortUp",
cssChildRow : "expand-child",
cssDesc : "tablesorter-headerSortDown",
cssHeader : "tablesorter-header",
cssInfoBlock : "tablesorter-infoOnly", // don't sort tbody with this class name
// selectors
selectorHeaders : 'thead th',
selectorRemove : "tr.remove-me",
// advanced
debug : false,
// Internal variables
headerList: [],
2012-04-20 16:09:43 +00:00
empties: {},
strings: {},
2012-05-07 03:06:54 +00:00
parsers: [],
widgets: []
2012-03-07 18:05:06 +00:00
// deprecated; but retained for backwards compatibility
// widgetZebra: { css: ["even", "odd"] }
2011-06-22 23:19:27 +00:00
};
/* debuging utils */
function log(s) {
if (typeof console !== "undefined" && typeof console.log !== "undefined") {
2011-06-22 23:19:27 +00:00
console.log(s);
} else {
alert(s);
}
}
function benchmark(s, d) {
2012-02-21 00:14:25 +00:00
log(s + " (" + (new Date().getTime() - d.getTime()) + "ms)");
2011-06-22 23:19:27 +00:00
}
this.benchmark = benchmark;
2012-02-21 00:14:25 +00:00
this.hasInitialized = false;
2011-06-22 23:19:27 +00:00
2012-05-07 03:06:54 +00:00
function getElementText(table, node, cellIndex) {
var text = "", t = table.config.textExtraction;
2011-06-22 23:19:27 +00:00
if (!node) { return ""; }
2012-05-07 03:06:54 +00:00
if (t === "simple") {
text = $(node).text();
2011-06-22 23:19:27 +00:00
} else {
2012-05-07 03:06:54 +00:00
if (typeof(t) === "function") {
text = t(node, table, cellIndex);
} else if (typeof(t) === "object" && t.hasOwnProperty(cellIndex)) {
text = t[cellIndex](node, table, cellIndex);
2011-06-22 23:19:27 +00:00
} else {
text = $(node).text();
}
}
return text;
}
/* parsers utils */
function getParserById(name) {
var i, l = parsers.length;
for (i = 0; i < l; i++) {
2012-03-07 18:05:06 +00:00
if (parsers[i].id.toLowerCase() === (name.toString()).toLowerCase()) {
2011-06-22 23:19:27 +00:00
return parsers[i];
}
}
return false;
}
function detectParserForColumn(table, rows, rowIndex, cellIndex) {
var i, l = parsers.length,
node = false,
nodeValue = '',
keepLooking = true;
while (nodeValue === '' && keepLooking) {
rowIndex++;
if (rows[rowIndex]) {
2012-03-07 18:05:06 +00:00
node = rows[rowIndex].cells[cellIndex];
2012-05-07 03:06:54 +00:00
nodeValue = $.trim(getElementText(table, node, cellIndex));
2011-06-22 23:19:27 +00:00
if (table.config.debug) {
2012-02-21 00:14:25 +00:00
log('Checking if value was empty on row ' + rowIndex + ', column:' + cellIndex + ": " + nodeValue);
2011-06-22 23:19:27 +00:00
}
} else {
keepLooking = false;
}
}
for (i = 1; i < l; i++) {
if (parsers[i].is(nodeValue, table, node)) {
return parsers[i];
}
}
// 0 is always the generic parser (text)
return parsers[0];
}
2012-04-20 16:09:43 +00:00
// get sorter, string and empty options for each column from
// metadata, header option or header class name ("sorter-false")
// priority = meta > headers option > header class name
function getData(m, ch, cl, key) {
var val = '';
if (m && m[key]) {
val = m[key];
} else if (ch && ch[key]) {
val = ch[key];
} else if (cl && cl.match(key + '-')) {
// include sorter class name "sorter-text", etc
val = cl.match( new RegExp(key + '-(\\w+)') )[1] || '';
}
return $.trim(val);
}
2011-06-22 23:19:27 +00:00
function buildParserCache(table, $headers) {
if (table.tBodies.length === 0) { return; } // In the case of empty tables
2012-04-21 12:37:53 +00:00
var c = table.config, rows = table.tBodies[0].rows,
list, l, i, h, m, ch, cl, p, parsersDebug = "";
2011-06-22 23:19:27 +00:00
if (rows[0]) {
list = [];
2012-04-20 16:09:43 +00:00
l = rows[0].cells.length;
2011-06-22 23:19:27 +00:00
for (i = 0; i < l; i++) {
2011-08-23 14:07:28 +00:00
h = $($headers[i]);
2012-04-21 12:37:53 +00:00
m = $.metadata ? h.metadata() : false;
2012-04-20 16:09:43 +00:00
ch = c.headers[i];
2012-04-21 12:37:53 +00:00
cl = h.attr('class') || '';
2012-04-20 16:09:43 +00:00
// get column parser
p = getParserById( getData(m, ch ,cl, 'sorter') );
// empty cells behaviour - keeping emptyToBottom for backwards compatibility.
c.empties[i] = getData(m, ch ,cl, 'empty') || c.emptyTo || (c.emptyToBottom ? 'bottom' : 'top' );
// text strings behaviour in numerical sorts
c.strings[i] = getData(m, ch ,cl, 'string') || c.stringTo || 'max';
2011-06-22 23:19:27 +00:00
if (!p) {
p = detectParserForColumn(table, rows, -1, i);
}
2012-04-20 16:09:43 +00:00
if (c.debug) {
parsersDebug += "column:" + i + "; parser:" + p.id + "; string:" + c.strings[i] + '; empty: ' + c.empties[i] + "\n";
2011-06-22 23:19:27 +00:00
}
list.push(p);
}
}
2012-04-20 16:09:43 +00:00
if (c.debug) {
2011-06-22 23:19:27 +00:00
log(parsersDebug);
}
return list;
}
/* utils */
function buildRegex(){
var a, acc = '[', t = $.tablesorter,
reg = t.characterEquivalents;
t.characterRegexArray = {};
for (a in reg) {
if (typeof a === 'string') {
acc += reg[a];
t.characterRegexArray[a] = new RegExp('[' + reg[a] + ']', 'g');
}
}
t.characterRegex = new RegExp(acc + ']');
}
2011-06-22 23:19:27 +00:00
function buildCache(table) {
2012-05-03 14:46:31 +00:00
var b = table.tBodies,
tc = table.config,
totalRows,
totalCells,
parsers = tc.parsers,
t, i, j, k, c, cols, cacheTime;
2012-05-03 14:46:31 +00:00
tc.cache = {};
if (tc.debug) {
2011-06-22 23:19:27 +00:00
cacheTime = new Date();
}
2012-05-03 14:46:31 +00:00
for (k = 0; k < b.length; k++) {
tc.cache[k] = { row: [], normalized: [] };
2012-05-05 01:42:04 +00:00
// ignore tbodies with class name from css.cssInfoBlock
if (!$(b[k]).hasClass(tc.cssInfoBlock)) {
totalRows = (b[k] && b[k].rows.length) || 0;
totalCells = (b[k].rows[0] && b[k].rows[0].cells.length) || 0;
for (i = 0; i < totalRows; ++i) {
/** Add the table data to main data array */
c = $(b[k].rows[i]);
cols = [];
// if this is a child row, add it to the last row's children and continue to the next row
if (c.hasClass(tc.cssChildRow)) {
tc.cache[k].row[tc.cache[k].row.length - 1] = tc.cache[k].row[tc.cache[k].row.length - 1].add(c);
// go to the next for loop
continue;
}
tc.cache[k].row.push(c);
for (j = 0; j < totalCells; ++j) {
2012-05-07 03:06:54 +00:00
t = $.trim(getElementText(table, c[0].cells[j], j));
2012-05-05 01:42:04 +00:00
// don't bother parsing if the string is empty - previously parsing would change it to zero
cols.push( parsers[j].format(t, table, c[0].cells[j], j) );
}
cols.push(tc.cache[k].normalized.length); // add position for rowCache
tc.cache[k].normalized.push(cols);
2012-05-03 14:46:31 +00:00
}
2011-06-22 23:19:27 +00:00
}
}
2012-05-03 14:46:31 +00:00
if (tc.debug) {
2012-02-21 00:14:25 +00:00
benchmark("Building cache for " + totalRows + " rows", cacheTime);
2011-06-22 23:19:27 +00:00
}
}
function getWidgetById(name) {
2011-09-13 22:55:31 +00:00
var i, w, l = widgets.length;
2011-06-22 23:19:27 +00:00
for (i = 0; i < l; i++) {
2011-09-13 22:55:31 +00:00
w = widgets[i];
if (w && w.hasOwnProperty('id') && w.id.toLowerCase() === name.toLowerCase()) {
return w;
2011-06-22 23:19:27 +00:00
}
}
}
2012-02-21 00:14:25 +00:00
function applyWidget(table, init) {
2011-06-22 23:19:27 +00:00
var c = table.config.widgets,
2011-09-13 22:55:31 +00:00
i, w, l = c.length;
2011-06-22 23:19:27 +00:00
for (i = 0; i < l; i++) {
2011-09-13 22:55:31 +00:00
w = getWidgetById(c[i]);
2012-02-21 00:14:25 +00:00
if ( w ) {
if (init && w.hasOwnProperty('init')) {
w.init(table, widgets, w);
} else if (!init && w.hasOwnProperty('format')) {
w.format(table);
}
2011-09-13 22:55:31 +00:00
}
2011-06-22 23:19:27 +00:00
}
}
2012-05-03 14:46:31 +00:00
function appendToTable(table) {
2011-09-16 15:43:09 +00:00
var c = table.config,
2012-05-03 14:46:31 +00:00
b = table.tBodies,
2011-06-22 23:19:27 +00:00
rows = [],
2012-05-03 14:46:31 +00:00
r, n, totalRows, checkCell,
f, i, j, k, l, pos, appendTime;
2011-09-16 15:43:09 +00:00
if (c.debug) {
2011-06-22 23:19:27 +00:00
appendTime = new Date();
}
2012-05-03 14:46:31 +00:00
for (k = 0; k < b.length; k++) {
2012-05-05 01:42:04 +00:00
if (!$(b[k]).hasClass(c.cssInfoBlock)){
f = document.createDocumentFragment();
r = c.cache[k].row;
n = c.cache[k].normalized;
totalRows = n.length;
checkCell = totalRows ? (n[0].length - 1) : 0;
for (i = 0; i < totalRows; i++) {
pos = n[i][checkCell];
rows.push(r[pos]);
// removeRows used by the pager plugin
if (!c.appender || !c.removeRows) {
l = r[pos].length;
for (j = 0; j < l; j++) {
f.appendChild(r[pos][j]);
}
2012-05-03 14:46:31 +00:00
}
2011-06-22 23:19:27 +00:00
}
2012-05-05 01:42:04 +00:00
table.tBodies[k].appendChild(f);
2011-06-22 23:19:27 +00:00
}
}
2011-09-16 15:43:09 +00:00
if (c.appender) {
c.appender(table, rows);
2011-06-22 23:19:27 +00:00
}
2011-09-16 15:43:09 +00:00
if (c.debug) {
2012-02-21 00:14:25 +00:00
benchmark("Rebuilt table", appendTime);
2011-06-22 23:19:27 +00:00
}
// apply table widgets
applyWidget(table);
// trigger sortend
2012-03-22 15:03:24 +00:00
$(table).trigger("sortEnd", table);
2011-06-22 23:19:27 +00:00
}
// from:
// http://www.javascripttoolbox.com/lib/table/examples.php
// http://www.javascripttoolbox.com/temp/table_cellindex.html
function computeTableHeaderCellIndexes(t) {
var matrix = [],
lookup = {},
thead = t.getElementsByTagName('THEAD')[0],
trs = thead.getElementsByTagName('TR'),
i, j, k, l, c, cells, rowIndex, cellId, rowSpan, colSpan, firstAvailCol, matrixrow;
for (i = 0; i < trs.length; i++) {
cells = trs[i].cells;
for (j = 0; j < cells.length; j++) {
c = cells[j];
rowIndex = c.parentNode.rowIndex;
cellId = rowIndex + "-" + c.cellIndex;
rowSpan = c.rowSpan || 1;
colSpan = c.colSpan || 1;
if (typeof(matrix[rowIndex]) === "undefined") {
matrix[rowIndex] = [];
}
// Find first available column in the first row
for (k = 0; k < matrix[rowIndex].length + 1; k++) {
if (typeof(matrix[rowIndex][k]) === "undefined") {
firstAvailCol = k;
break;
}
}
lookup[cellId] = firstAvailCol;
2012-05-07 03:06:54 +00:00
$(c).attr({ 'data-row' : rowIndex, 'data-column' : firstAvailCol });
2011-06-22 23:19:27 +00:00
for (k = rowIndex; k < rowIndex + rowSpan; k++) {
if (typeof(matrix[k]) === "undefined") {
matrix[k] = [];
}
matrixrow = matrix[k];
for (l = firstAvailCol; l < firstAvailCol + colSpan; l++) {
matrixrow[l] = "x";
}
}
}
}
return lookup;
}
function formatSortingOrder(v) {
2012-03-08 13:28:07 +00:00
// look for "d" in "desc" order; return true
return (/^d/i.test(v) || v === 1);
2011-06-22 23:19:27 +00:00
}
function checkHeaderMetadata(cell) {
return (($.metadata) && ($(cell).metadata().sorter === false));
}
function checkHeaderOptions(table, i) {
return ((table.config.headers[i]) && (table.config.headers[i].sorter === false));
}
function checkHeaderLocked(table, i) {
if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder !== null)) { return table.config.headers[i].lockedOrder; }
2011-06-22 23:19:27 +00:00
return false;
}
function checkHeaderOrder(table, i) {
if ((table.config.headers[i]) && (table.config.headers[i].sortInitialOrder)) { return table.config.headers[i].sortInitialOrder; }
return table.config.sortInitialOrder;
}
2011-06-22 23:19:27 +00:00
function buildHeaders(table) {
var meta = ($.metadata) ? true : false,
header_index = computeTableHeaderCellIndexes(table),
2011-09-16 15:43:09 +00:00
$th, lock, time, $tableHeaders, c = table.config;
c.headerList = [];
if (c.debug) {
2011-06-22 23:19:27 +00:00
time = new Date();
}
2011-09-16 15:43:09 +00:00
$tableHeaders = $(c.selectorHeaders, table)
2012-03-27 01:49:48 +00:00
.wrapInner("<div class='tablesorter-header-inner' />")
.each(function(index) {
2011-06-22 23:19:27 +00:00
this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
2012-03-08 13:28:07 +00:00
this.order = formatSortingOrder( checkHeaderOrder(table, index) ) ? [1,0,2] : [0,1,2];
this.count = -1; // set to -1 because clicking on the header automatically adds one
2012-03-27 01:49:48 +00:00
if (checkHeaderMetadata(this) || checkHeaderOptions(table, index) || $(this).hasClass('sorter-false')) { this.sortDisabled = true; }
this.lockedOrder = false;
lock = checkHeaderLocked(table, index);
2012-03-08 13:28:07 +00:00
if (typeof(lock) !== 'undefined' && lock !== false) {
this.order = this.lockedOrder = formatSortingOrder(lock) ? [1,1,1] : [0,0,0];
}
2011-06-22 23:19:27 +00:00
if (!this.sortDisabled) {
2011-09-16 15:43:09 +00:00
$th = $(this).addClass(c.cssHeader);
if (c.onRenderHeader) { c.onRenderHeader.apply($th, [index]); }
2011-06-22 23:19:27 +00:00
}
// add cell to headerList
2011-09-16 15:43:09 +00:00
c.headerList[index] = this;
2012-03-27 01:49:48 +00:00
$(this).parent().addClass(c.cssHeader);
2011-06-22 23:19:27 +00:00
});
2011-09-16 15:43:09 +00:00
if (c.debug) {
2012-02-21 00:14:25 +00:00
benchmark("Built headers", time);
2011-06-22 23:19:27 +00:00
log($tableHeaders);
}
return $tableHeaders;
}
function isValueInArray(v, a) {
var i, l = a.length;
for (i = 0; i < l; i++) {
if (a[i][0] === v) {
return true;
}
}
return false;
}
2012-02-20 22:21:42 +00:00
function setHeadersCss(table, $headers, list) {
2012-05-07 03:06:54 +00:00
var f, h = [], i, l, css = [table.config.cssDesc, table.config.cssAsc];
2011-06-22 23:19:27 +00:00
// remove all header information
2012-05-07 03:06:54 +00:00
$headers
.removeClass(css.join(' '))
.each(function() {
if (!this.sortDisabled) {
h[this.column] = $(this);
}
});
2011-06-22 23:19:27 +00:00
l = list.length;
for (i = 0; i < l; i++) {
2012-02-01 05:14:28 +00:00
if (list[i][1] === 2) { continue; } // direction = 2 means reset!
2011-06-22 23:19:27 +00:00
h[list[i][0]].addClass(css[list[i][1]]);
2012-05-07 03:06:54 +00:00
// multicolumn sorting updating
f = $headers.filter('[data-column="' + list[i][0] + '"]');
if (l > 1 && f.length) { f.addClass(css[list[i][1]]); }
2011-06-22 23:19:27 +00:00
}
}
2012-04-12 22:05:28 +00:00
function fixColumnWidth(table) {
2011-09-16 15:43:09 +00:00
if (table.config.widthFixed) {
var colgroup = $('<colgroup>');
$("tr:first td", table.tBodies[0]).each(function() {
2011-06-22 23:19:27 +00:00
colgroup.append($('<col>').css('width', $(this).width()));
});
$(table).prepend(colgroup);
}
}
function updateHeaderSortCount(table, sortList) {
var i, s, o, c = table.config,
l = sortList.length;
for (i = 0; i < l; i++) {
s = sortList[i];
o = c.headerList[s[0]];
o.count = s[1] % (c.sortReset ? 3 : 2);
2011-06-22 23:19:27 +00:00
}
}
function getCachedSortType(parsers, i) {
2011-08-22 15:00:17 +00:00
return (parsers) ? parsers[i].type : '';
2011-06-22 23:19:27 +00:00
}
/* sorting methods - reverted sorting method back to version 2.0.3 */
2012-05-03 14:46:31 +00:00
function multisort(table, sortList) {
var dynamicExp, col, mx = 0, dir = 0, tc = table.config,
l = sortList.length, bl = table.tBodies.length,
sortTime, i, j, k, c, cache, lc, s, e, order, orgOrderCol;
2011-08-01 03:15:17 +00:00
if (tc.debug) { sortTime = new Date(); }
2012-05-03 14:46:31 +00:00
for (k = 0; k < bl; k++) {
dynamicExp = "var sortWrapper = function(a,b) {";
cache = tc.cache[k];
lc = cache.normalized.length;
for (i = 0; i < l; i++) {
c = sortList[i][0];
order = sortList[i][1];
s = getCachedSortType(tc.parsers,c) === "text" ? "Text" : "Numeric";
s += order === 0 ? "" : "Desc";
e = "e" + i;
// get max column value (ignore sign)
if (/Numeric/.test(s) && tc.strings[c]) {
for (j = 0; j < lc; j++) {
col = Math.abs(parseFloat(cache.normalized[j][c]));
mx = Math.max( mx, isNaN(col) ? 0 : col );
}
// sort strings in numerical columns
if (typeof(tc.string[tc.strings[c]]) === 'boolean') {
dir = (order === 0 ? 1 : -1) * (tc.string[tc.strings[c]] ? -1 : 1);
} else {
dir = (tc.strings[c]) ? tc.string[tc.strings[c]] || 0 : 0;
}
2012-04-20 16:09:43 +00:00
}
2012-05-03 14:46:31 +00:00
dynamicExp += "var " + e + " = sort" + s + "(a[" + c + "],b[" + c + "]," + c + "," + mx + "," + dir + "); ";
dynamicExp += "if (" + e + ") { return " + e + "; } ";
dynamicExp += "else { ";
}
// if value is the same keep orignal order
orgOrderCol = (cache.normalized && cache.normalized[0]) ? cache.normalized[0].length - 1 : 0;
dynamicExp += "return a[" + orgOrderCol + "]-b[" + orgOrderCol + "];";
for (i=0; i < l; i++) {
dynamicExp += "}; ";
2011-08-01 03:15:17 +00:00
}
2012-05-03 14:46:31 +00:00
dynamicExp += "return 0; ";
2011-06-22 23:19:27 +00:00
dynamicExp += "}; ";
2012-05-03 14:46:31 +00:00
eval(dynamicExp);
cache.normalized.sort(sortWrapper); // sort using eval expression
2011-06-22 23:19:27 +00:00
}
2012-02-21 00:14:25 +00:00
if (tc.debug) { benchmark("Sorting on " + sortList.toString() + " and dir " + order+ " time", sortTime); }
2011-06-22 23:19:27 +00:00
}
2011-08-01 03:15:17 +00:00
// Natural sort modified from: http://www.webdeveloper.com/forum/showthread.php?t=107909
2012-04-20 16:09:43 +00:00
function sortText(a, b, col) {
if (a === b) { return 0; }
2012-05-05 01:42:04 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ],
r = $.tablesorter.regex, xN, xD, yN, yD, xF, yF, i, mx;
2012-04-20 16:09:43 +00:00
if (a === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? -1 : 1) : -e || -1; }
if (b === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? 1 : -1) : e || 1; }
if (typeof c.textSorter === 'function') { return c.textSorter(a, b); }
2012-05-05 01:42:04 +00:00
// natural sort - https://github.com/overset/javascript-natural-sort
// chunk/tokenize
xN = a.replace(r[0], '\0$1\0').replace(/\0$/, '').replace(/^\0/, '').split('\0');
yN = b.replace(r[0], '\0$1\0').replace(/\0$/, '').replace(/^\0/, '').split('\0');
// numeric, hex or date detection
xD = parseInt(a.match(r[2])) || (xN.length !== 1 && a.match(r[1]) && Date.parse(a));
yD = parseInt(b.match(r[2])) || (xD && b.match(r[1]) && Date.parse(b)) || null;
// first try and sort Hex codes or Dates
if (yD) {
if ( xD < yD ) { return -1; }
if ( xD > yD ) { return 1; }
}
mx = Math.max(xN.length, yN.length);
// natural sorting through split numeric strings and default strings
for (i = 0; i < mx; i++) {
// find floats not starting with '0', string or 0 if not defined (Clint Priest)
xF = (!(xN[i] || '').match(r[3]) && parseFloat(xN[i])) || xN[i] || 0;
yF = (!(yN[i] || '').match(r[3]) && parseFloat(yN[i])) || yN[i] || 0;
// handle numeric vs string comparison - number < string - (Kyle Adams)
if (isNaN(xF) !== isNaN(yF)) { return (isNaN(xF)) ? 1 : -1; }
// rely on string comparison if different types - i.e. '02' < 2 != '02' < '2'
if (typeof xF !== typeof yF) {
xF += '';
yF += '';
2011-06-22 23:19:27 +00:00
}
2012-05-05 01:42:04 +00:00
if (xF < yF) { return -1; }
if (xF > yF) { return 1; }
2011-06-22 23:19:27 +00:00
}
2012-05-05 01:42:04 +00:00
return 0;
2011-06-22 23:19:27 +00:00
}
2012-04-29 02:45:34 +00:00
function sortTextDesc(a, b, col) {
if (a === b) { return 0; }
2012-05-04 05:59:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
2012-04-20 16:09:43 +00:00
if (a === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? -1 : 1) : e || 1; }
if (b === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? 1 : -1) : -e || -1; }
if (typeof c.textSorter === 'function') { return c.textSorter(b, a); }
return sortText(b, a);
2011-08-01 03:15:17 +00:00
}
// return text string value by adding up ascii value
// so the text is somewhat sorted when using a digital sort
// this is NOT an alphanumeric sort
2012-04-29 02:45:34 +00:00
function getTextValue(a, mx, d) {
2011-08-01 03:15:17 +00:00
if (mx) {
// make sure the text value is greater than the max numerical value (mx)
var i, l = a.length, n = mx + d;
2012-04-29 02:45:34 +00:00
for (i = 0; i < l; i++) {
2011-08-01 03:15:17 +00:00
n += a.charCodeAt(i);
}
return d * n;
}
return 0;
2011-06-22 23:19:27 +00:00
}
2012-04-20 16:09:43 +00:00
function sortNumeric(a, b, col, mx, d) {
if (a === b) { return 0; }
2012-05-04 05:59:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
2012-04-20 16:09:43 +00:00
if (a === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? -1 : 1) : -e || -1; }
if (b === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? 1 : -1) : e || 1; }
if (isNaN(a)) { a = getTextValue(a, mx, d); }
if (isNaN(b)) { b = getTextValue(b, mx, d); }
2011-06-22 23:19:27 +00:00
return a - b;
}
2012-04-20 16:09:43 +00:00
function sortNumericDesc(a, b, col, mx, d) {
if (a === b) { return 0; }
2012-05-04 05:59:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
2012-04-20 16:09:43 +00:00
if (a === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? -1 : 1) : e || 1; }
if (b === '' && e !== 0) { return (typeof(e) === 'boolean') ? (e ? 1 : -1) : -e || -1; }
if (isNaN(a)) { a = getTextValue(a, mx, d); }
if (isNaN(b)) { b = getTextValue(b, mx, d); }
2011-06-22 23:19:27 +00:00
return b - a;
}
/* public methods */
2012-04-29 02:45:34 +00:00
this.construct = function(settings) {
return this.each(function() {
2011-06-22 23:19:27 +00:00
// if no thead or tbody quit.
2012-03-07 18:05:06 +00:00
if (!this.tHead || this.tBodies.length === 0) { return; }
2011-06-22 23:19:27 +00:00
// declare
2012-05-04 05:59:43 +00:00
var $headers, $cell, totalRows, $this,
config, c, i, j, k, a, s, o;
2011-06-22 23:19:27 +00:00
// new blank config object
2012-05-04 05:59:43 +00:00
this.config = {};
2011-06-22 23:19:27 +00:00
// merge and extend.
2012-05-04 05:59:43 +00:00
c = config = $.extend(true, this.config, $.tablesorter.defaults, settings);
2011-06-22 23:19:27 +00:00
// store common expression for speed
2012-05-04 05:59:43 +00:00
tbl = $this = $(this).addClass(c.tableClass);
2011-06-22 23:19:27 +00:00
// save the settings where they read
2012-05-04 05:59:43 +00:00
$.data(this, "tablesorter", c);
// build up character equivalent cross-reference
buildRegex();
2012-04-20 16:09:43 +00:00
// digit sort text location; keeping max+/- for backwards compatibility
c.string = { 'max': 1, 'min': -1, 'max+': 1, 'max-': -1, 'zero': 0, 'none': 0, 'null': 0, 'top': true, 'bottom': false };
2011-06-22 23:19:27 +00:00
// build headers
2012-05-04 05:59:43 +00:00
$headers = buildHeaders(this);
2011-06-22 23:19:27 +00:00
// try to auto detect column type, and store in tables config
2012-05-04 05:59:43 +00:00
c.parsers = buildParserCache(this, $headers);
2011-06-22 23:19:27 +00:00
// build the cache for the tbody cells
2012-05-04 05:59:43 +00:00
buildCache(this);
2011-06-22 23:19:27 +00:00
// fixate columns if the users supplies the fixedWidth option
2012-05-04 05:59:43 +00:00
fixColumnWidth(this);
2011-06-22 23:19:27 +00:00
// apply event handling to headers
// this is to big, perhaps break it out?
$headers
2012-04-29 02:45:34 +00:00
.click(function(e) {
2011-08-22 15:00:17 +00:00
if (!this.sortDisabled) {
2011-06-22 23:19:27 +00:00
// Only call sortStart if sorting is enabled.
2012-05-04 05:59:43 +00:00
$this.trigger("sortStart", $this[0]);
2011-06-22 23:19:27 +00:00
// store exp, for speed
$cell = $(this);
2012-03-22 15:03:24 +00:00
k = !e[c.sortMultiSortKey];
// get current column sort order
2012-03-08 13:28:07 +00:00
this.count = (this.count + 1) % (c.sortReset ? 3 : 2);
// reset all sorts on non-current column - issue #30
if (c.sortRestart) {
i = this;
2012-04-29 02:45:34 +00:00
$headers.each(function() {
// only reset counts on columns that weren't just clicked on and if not included in a multisort
2012-03-22 15:03:24 +00:00
if (this !== i && (k || !$(this).is('.' + c.cssDesc + ',.' + c.cssAsc))) {
2012-03-08 13:28:07 +00:00
this.count = -1;
}
});
}
2011-06-22 23:19:27 +00:00
// get current column index
i = this.column;
2011-09-08 16:28:10 +00:00
// user only wants to sort on one column
2012-03-22 15:03:24 +00:00
if (k) {
2011-06-22 23:19:27 +00:00
// flush the sort list
c.sortList = [];
if (c.sortForce !== null) {
a = c.sortForce;
2011-06-22 23:19:27 +00:00
for (j = 0; j < a.length; j++) {
if (a[j][0] !== i) {
c.sortList.push(a[j]);
2011-06-22 23:19:27 +00:00
}
}
}
// add column to sort list
2012-05-07 03:06:54 +00:00
o = this.order[this.count];
if (o < 2) {
c.sortList.push([i, o]);
// add other columns if header spans across multiple
if (this.colSpan > 1) {
for (j = 1; j < this.colSpan; j++) {
c.sortList.push([i+j, o]);
}
}
}
2011-06-22 23:19:27 +00:00
// multi column sorting
} else {
2011-10-18 15:52:53 +00:00
// the user has clicked on an already sorted column.
if (isValueInArray(i, c.sortList)) {
2011-10-18 15:52:53 +00:00
// reverse the sorting direction for all tables.
for (j = 0; j < c.sortList.length; j++) {
s = c.sortList[j];
o = c.headerList[s[0]];
2011-06-22 23:19:27 +00:00
if (s[0] === i) {
2012-03-22 15:03:24 +00:00
s[1] = o.order[o.count];
2012-03-08 13:28:07 +00:00
if (s[1] === 2) {
c.sortList.splice(j,1);
2012-03-08 13:28:07 +00:00
o.count = -1;
2012-02-01 05:14:28 +00:00
}
2011-06-22 23:19:27 +00:00
}
}
} else {
// add column to sort list array
2012-05-07 03:06:54 +00:00
o = this.order[this.count];
if (o < 2) {
c.sortList.push([i, o]);
// add other columns if header spans across multiple
if (this.colSpan > 1) {
for (j = 1; j < this.colSpan; j++) {
c.sortList.push([i+j, o]);
}
}
}
2011-06-22 23:19:27 +00:00
}
}
if (c.sortAppend !== null) {
a = c.sortAppend;
2011-07-17 15:01:18 +00:00
for (j = 0; j < a.length; j++) {
if (a[j][0] !== i) {
c.sortList.push(a[j]);
2011-07-17 15:01:18 +00:00
}
}
}
2011-09-22 16:16:30 +00:00
// sortBegin event triggered immediately before the sort
2012-05-04 05:59:43 +00:00
$this.trigger("sortBegin", $this[0]);
2012-03-22 15:03:24 +00:00
// set css for headers
2012-05-04 05:59:43 +00:00
setHeadersCss($this[0], $headers, c.sortList);
appendToTable($this[0], multisort($this[0], c.sortList));
2011-06-22 23:19:27 +00:00
// stop normal event by returning false
return false;
}
// cancel selection
})
2012-04-29 02:45:34 +00:00
.mousedown(function() {
if (c.cancelSelection) {
2012-04-29 02:45:34 +00:00
this.onselectstart = function() {
2011-06-22 23:19:27 +00:00
return false;
};
return false;
}
});
// apply easy methods that trigger binded events
2012-05-04 05:59:43 +00:00
$this
2012-04-29 02:45:34 +00:00
.bind("update", function(e, resort) {
2012-03-22 15:03:24 +00:00
// remove rows/elements before update
2012-05-03 14:46:31 +00:00
$(c.selectorRemove, this).remove();
2012-03-22 15:03:24 +00:00
// rebuild parsers.
2012-05-03 14:46:31 +00:00
c.parsers = buildParserCache(this, $headers);
2012-03-22 15:03:24 +00:00
// rebuild the cache map
2012-05-03 14:46:31 +00:00
buildCache(this);
2012-05-04 05:59:43 +00:00
if (resort !== false) { $this.trigger("sorton", [c.sortList]); }
2011-06-22 23:19:27 +00:00
})
.bind("updateCell", function(e, cell, resort) {
2011-06-22 23:19:27 +00:00
// get position from the dom.
2012-05-07 03:06:54 +00:00
var t = $this[0], pos = [(cell.parentNode.rowIndex - 1), cell.cellIndex],
2012-03-07 18:05:06 +00:00
// update cache - format: function(s, table, cell, cellIndex)
2012-05-07 03:06:54 +00:00
tbdy = $this.find('tbody').index( $(cell).closest('tbody') );
t.config.cache[tbdy].normalized[pos[0]][pos[1]] = c.parsers[pos[1]].format( getElementText(t, cell, pos[1]), t, cell, pos[1] );
2012-05-04 05:59:43 +00:00
if (resort !== false) { $this.trigger("sorton", [c.sortList]); }
2011-06-22 23:19:27 +00:00
})
2012-05-03 14:46:31 +00:00
.bind("addRows", function(e, $row, resort) {
var i, rows = $row.filter('tr').length,
2012-05-07 03:06:54 +00:00
dat = [], l = $row[0].cells.length, t = $this[0],
tbdy = $this.find('tbody').index( $row.closest('tbody') );
2011-09-08 16:28:10 +00:00
// add each row
for (i = 0; i < rows; i++) {
// add each cell
for (j = 0; j < l; j++) {
2012-05-07 03:06:54 +00:00
dat[j] = c.parsers[j].format( getElementText(t, $row[i].cells[j], j), t, $row[i].cells[j], j );
2011-09-08 16:28:10 +00:00
}
// add the row index to the end
2012-05-07 03:06:54 +00:00
dat.push(c.cache[tbdy].row.length);
2011-09-08 16:28:10 +00:00
// update cache
2012-05-07 03:06:54 +00:00
c.cache[tbdy].row.push([$row[i]]);
c.cache[tbdy].normalized.push(dat);
2011-09-08 16:28:10 +00:00
dat = [];
}
// resort using current settings
2012-05-04 05:59:43 +00:00
if (resort !== false) { $this.trigger("sorton", [c.sortList]); }
2011-09-08 16:28:10 +00:00
})
2011-06-22 23:19:27 +00:00
.bind("sorton", function(e, list) {
2012-05-04 05:59:43 +00:00
$this.trigger("sortStart", $this[0]);
c.sortList = list;
2011-06-22 23:19:27 +00:00
// update and store the sortlist
var sortList = c.sortList;
2011-06-22 23:19:27 +00:00
// update header count index
updateHeaderSortCount(this, sortList);
// set css for headers
2012-02-20 22:21:42 +00:00
setHeadersCss(this, $headers, sortList);
2011-06-22 23:19:27 +00:00
// sort the table and append it to the dom
2012-05-03 14:46:31 +00:00
appendToTable(this, multisort(this, sortList));
2011-06-22 23:19:27 +00:00
})
.bind("appendCache", function() {
2012-05-03 14:46:31 +00:00
appendToTable(this);
2011-06-22 23:19:27 +00:00
})
.bind("applyWidgetId", function(e, id) {
2011-06-22 23:19:27 +00:00
getWidgetById(id).format(this);
})
.bind("applyWidgets", function() {
2011-06-22 23:19:27 +00:00
// apply widgets
applyWidget(this);
});
if ($.metadata && ($(this).metadata() && $(this).metadata().sortlist)) {
c.sortList = $(this).metadata().sortlist;
2011-06-22 23:19:27 +00:00
}
2012-02-21 00:14:25 +00:00
// apply widget init code
applyWidget(this, true);
2011-06-22 23:19:27 +00:00
// if user has supplied a sort list to constructor.
if (c.sortList.length > 0) {
2012-05-04 05:59:43 +00:00
$this.trigger("sorton", [c.sortList]);
2012-01-30 15:58:58 +00:00
} else {
2012-02-21 00:14:25 +00:00
// apply widget format
2012-01-30 15:58:58 +00:00
applyWidget(this);
2011-06-22 23:19:27 +00:00
}
2012-05-07 03:06:54 +00:00
// initialized
2012-02-21 00:14:25 +00:00
this.hasInitialized = true;
2012-05-04 05:59:43 +00:00
$this.trigger('tablesorter-initialized', this);
2012-05-03 14:46:31 +00:00
if (typeof c.initialized === 'function') { c.initialized(this); }
2011-06-22 23:19:27 +00:00
});
};
2012-05-07 03:06:54 +00:00
2011-07-17 15:01:18 +00:00
this.addParser = function(parser) {
2011-06-22 23:19:27 +00:00
var i, l = parsers.length, a = true;
for (i = 0; i < l; i++) {
if (parsers[i].id.toLowerCase() === parser.id.toLowerCase()) {
a = false;
}
}
if (a) {
parsers.push(parser);
}
};
this.addWidget = function(widget) {
2011-06-22 23:19:27 +00:00
widgets.push(widget);
};
2011-08-01 03:15:17 +00:00
this.formatFloat = function(s) {
2012-03-12 23:33:56 +00:00
if (typeof(s) !== 'string') { return s; }
2012-05-04 05:59:43 +00:00
if (tbl[0].config.usNumberFormat) {
2012-03-12 23:33:56 +00:00
// US Format - 1,234,567.89 -> 1234567.89
s = s.replace(/,/g,'');
} else {
// German Format = 1.234.567,89 -> 1234567.89
// French Format = 1 234 567,89 -> 1234567.89
s = s.replace(/[\s|\.]/g,'').replace(/,/g,'.');
}
if(/^\s*\([.\d]+\)/.test(s)) {
s = s.replace(/^\s*\(/,'-').replace(/\)/,'');
}
2011-06-22 23:19:27 +00:00
var i = parseFloat(s);
2011-08-01 03:15:17 +00:00
// return the text instead of zero
return isNaN(i) ? $.trim(s) : i;
2011-06-22 23:19:27 +00:00
};
2011-08-01 03:15:17 +00:00
this.isDigit = function(s) {
// replace all unwanted chars and match.
return (/^[\-+(]?\d*[)]?$/).test($.trim(s.replace(/[,.'\s]/g, '')));
2011-06-22 23:19:27 +00:00
};
2012-05-05 01:42:04 +00:00
// regex used in natural sort
this.regex = [
/(^-?[0-9]+(\.?[0-9]*)[df]?e?[0-9]?$|^0x[0-9a-f]+$|[0-9]+)/gi, // chunk/tokenize numbers & letters
/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[\/\-]\d{1,4}[\/\-]\d{1,4}|^\w+, \w+ \d+, \d{4})/, //date
/^0x[0-9a-f]+$/i, // hex
/^0/ // leading zeros
];
// used when replacing accented characters during sorting
this.characterEquivalents = {
"a" : "\u00e1\u00e0\u00e2\u00e3\u00e4", // áàâãä
"A" : "\u00c1\u00c0\u00c2\u00c3\u00c4", // ÁÀÂÃÄ
"c" : "\u00e7", // ç
"C" : "\u00c7", // Ç
"e" : "\u00e9\u00e8\u00ea\u00eb", // éèêë
"E" : "\u00c9\u00c8\u00ca\u00cb", // ÉÈÊË
"i" : "\u00ed\u00ec\u0130\u00ee\u00ef", // íìİîï
"I" : "\u00cd\u00cc\u0130\u00ce\u00cf", // ÍÌİÎÏ
"o" : "\u00f3\u00f2\u00f4\u00f5\u00f6", // óòôõö
"O" : "\u00d3\u00d2\u00d4\u00d5\u00d6", // ÓÒÔÕÖ
"S" : "\u00df", // ß
"u" : "\u00fa\u00f9\u00fb\u00fc", // úùûü
"U" : "\u00da\u00d9\u00db\u00dc" // ÚÙÛÜ
};
this.replaceAccents = function(s) {
if (this.characterRegex.test(s)) {
var a, eq = this.characterEquivalents;
for (a in eq) {
if (typeof a === 'string') {
s = s.replace( this.characterRegexArray[a], a );
}
}
}
return s;
};
this.clearTableBody = function(table) {
2012-05-03 14:46:31 +00:00
$(table.tBodies).filter(':not(.' + table.config.cssInfoBlock + ')').empty();
2011-06-22 23:19:27 +00:00
};
2011-07-17 15:01:18 +00:00
}
2011-06-22 23:19:27 +00:00
})();
// extend plugin scope
$.fn.extend({
tablesorter: $.tablesorter.construct
});
// make shortcut
var ts = $.tablesorter;
// add default parsers
ts.addParser({
id: "text",
2012-04-29 02:45:34 +00:00
is: function(s) {
2011-06-22 23:19:27 +00:00
return true;
},
format: function(s, table) {
var c = table.config;
s = $.trim( c.ignoreCase ? s.toLocaleLowerCase() : s );
return c.sortLocaleCompare ? $.tablesorter.replaceAccents(s) : s;
2011-06-22 23:19:27 +00:00
},
type: "text"
});
ts.addParser({
id: "digit",
2012-04-29 02:45:34 +00:00
is: function(s) {
2012-03-12 23:33:56 +00:00
return $.tablesorter.isDigit(s);
2011-06-22 23:19:27 +00:00
},
2012-04-29 02:45:34 +00:00
format: function(s) {
return $.tablesorter.formatFloat(s.replace(/[^\w,. \-()]/g, ""));
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "currency",
2012-04-29 02:45:34 +00:00
is: function(s) {
return (/^\(?[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]/).test(s); // #$ $%"?.
2011-06-22 23:19:27 +00:00
},
2012-04-29 02:45:34 +00:00
format: function(s) {
return $.tablesorter.formatFloat(s.replace(/[^0-9,. \-()]/g, ""));
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "ipAddress",
is: function(s) {
return (/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/).test(s);
},
2012-04-29 02:45:34 +00:00
format: function(s) {
2011-06-22 23:19:27 +00:00
var i, item, a = s.split("."),
r = "",
l = a.length;
for (i = 0; i < l; i++) {
item = a[i];
if (item.length === 2) {
r += "0" + item;
} else {
r += item;
}
}
return $.tablesorter.formatFloat(r);
},
type: "numeric"
});
ts.addParser({
id: "url",
is: function(s) {
return (/^(https?|ftp|file):\/\/$/).test(s);
},
format: function(s) {
return $.trim(s.replace(/(https?|ftp|file):\/\//, ''));
2011-06-22 23:19:27 +00:00
},
type: "text"
});
ts.addParser({
id: "isoDate",
is: function(s) {
return (/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/).test(s);
},
2011-08-01 03:15:17 +00:00
format: function(s) {
return $.tablesorter.formatFloat((s !== "") ? new Date(s.replace(/-/g, "/")).getTime() : "");
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "percent",
is: function(s) {
return (/\%\)?$/).test($.trim(s));
2011-06-22 23:19:27 +00:00
},
format: function(s) {
return $.tablesorter.formatFloat(s.replace(/%/g, ""));
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "usLongDate",
is: function(s) {
return s.match(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/);
2011-06-22 23:19:27 +00:00
},
format: function(s) {
return $.tablesorter.formatFloat(new Date(s).getTime());
},
type: "numeric"
});
ts.addParser({
2012-03-21 00:50:53 +00:00
id: "shortDate", // "mmddyyyy", "ddmmyyyy" or "yyyymmdd"
2011-06-22 23:19:27 +00:00
is: function(s) {
2011-10-18 15:52:53 +00:00
// testing for ####-####-#### - so it's not perfect
return (/\d{1,4}[\/\-\,\.\s+]\d{1,4}[\/\-\.\,\s+]\d{1,4}/).test(s);
2011-06-22 23:19:27 +00:00
},
2011-10-18 15:52:53 +00:00
format: function(s, table, cell, cellIndex) {
var c = table.config,
format = (c.headers && c.headers[cellIndex]) ? c.headers[cellIndex].dateFormat || c.dateFormat : c.dateFormat; // get dateFormat from header or config
s = s.replace(/\s+/g," ").replace(/[\-|\.|\,]/g, "/");
2011-10-18 15:52:53 +00:00
if (format === "mmddyyyy") {
s = s.replace(/(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/, "$3/$1/$2");
2011-10-18 15:52:53 +00:00
} else if (format === "ddmmyyyy") {
s = s.replace(/(\d{1,2})[\/\s](\d{1,2})[\/\s](\d{4})/, "$3/$2/$1");
2011-10-18 15:52:53 +00:00
} else if (format === "yyyymmdd") {
s = s.replace(/(\d{4})[\/\s](\d{1,2})[\/\s](\d{1,2})/, "$1/$2/$3");
2011-06-22 23:19:27 +00:00
}
return $.tablesorter.formatFloat(new Date(s).getTime());
},
type: "numeric"
});
ts.addParser({
id: "time",
is: function(s) {
return (/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/).test(s);
},
format: function(s) {
return $.tablesorter.formatFloat(new Date("2000/01/01 " + s).getTime());
},
type: "numeric"
});
ts.addParser({
id: "metadata",
is: function(s) {
return false;
},
format: function(s, table, cell) {
var c = table.config,
p = (!c.parserMetadataName) ? 'sortValue' : c.parserMetadataName;
return $(cell).metadata()[p];
},
type: "numeric"
});
// add default widgets
ts.addWidget({
id: "zebra",
format: function(table) {
2012-05-05 01:42:04 +00:00
var $tr, $r, row, even, time, k,
2012-03-07 18:05:06 +00:00
c = table.config,
child = c.cssChildRow,
2012-05-03 14:46:31 +00:00
b = table.tBodies,
2012-03-07 18:05:06 +00:00
css = [ "even", "odd" ];
// maintain backwards compatibility
css = c.widgetZebra && c.hasOwnProperty('css') ? c.widgetZebra.css :
(c.widgetOptions && c.widgetOptions.hasOwnProperty('zebra')) ? c.widgetOptions.zebra : css;
2011-06-22 23:19:27 +00:00
if (table.config.debug) {
time = new Date();
}
2012-05-03 14:46:31 +00:00
for (k = 0; k < b.length; k++ ) {
row = 0;
// loop through the visible rows
$tr = $(b[k]).filter(':not(' + c.cssInfoBlock + ')').find('tr:visible:not(.' + c.cssInfoBlock + ')');
if ($tr.length > 1) {
$tr.each(function() {
2012-05-05 01:42:04 +00:00
$r = $(this);
2012-05-03 14:46:31 +00:00
// style children rows the same way the parent row was styled
2012-05-05 01:42:04 +00:00
if (!$r.hasClass(child)) { row++; }
2012-05-03 14:46:31 +00:00
even = (row % 2 === 0);
2012-05-05 01:42:04 +00:00
$r
2012-05-03 14:46:31 +00:00
.removeClass(css[even ? 1 : 0])
.addClass(css[even ? 0 : 1]);
});
}
}
2011-06-22 23:19:27 +00:00
if (table.config.debug) {
$.tablesorter.benchmark("Applying Zebra widget", time);
}
}
});
})(jQuery);