tablesorter/js/jquery.tablesorter.js

1019 lines
32 KiB
JavaScript
Raw Normal View History

2012-03-18 14:02:49 +00:00
/*!
2012-04-29 02:45:34 +00:00
* TableSorter 2.1.20 - 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-04-29 02:45:34 +00:00
this.version = "2.1.20";
2012-03-18 14:02:49 +00:00
2011-06-22 23:19:27 +00:00
var parsers = [], widgets = [], tbl;
this.defaults = {
2012-03-27 01:49:48 +00:00
cssHeader: "tablesorter-header",
cssAsc: "tablesorter-headerSortUp",
cssDesc: "tablesorter-headerSortDown",
2011-06-22 23:19:27 +00:00
cssChildRow: "expand-child",
2012-05-03 14:46:31 +00:00
cssInfoBlock: "tablesorter-infoOnly",
2011-06-22 23:19:27 +00:00
sortInitialOrder: "asc",
sortMultiSortKey: "shiftKey",
sortForce: null,
sortAppend: null,
sortLocaleCompare: false,
2012-02-27 11:59:20 +00:00
sortReset: false,
sortRestart: false,
2012-04-20 16:09:43 +00:00
emptyTo : "bottom", // sort empty cell to bottom
stringTo : "max", // sort strings in numerical column as max value
2011-06-22 23:19:27 +00:00
textExtraction: "simple",
parsers: {},
widgets: [],
headers: {},
2012-04-20 16:09:43 +00:00
empties: {},
strings: {},
2011-06-22 23:19:27 +00:00
widthFixed: false,
cancelSelection: true,
sortList: [],
headerList: [],
2011-10-18 15:52:53 +00:00
dateFormat: "mmddyyyy", // other options: "ddmmyyy" or "yyyymmdd"
2012-03-12 23:33:56 +00:00
usNumberFormat: true, // false for German "1.234.567,89" or French "1 234 567,89"
2011-06-22 23:19:27 +00:00
onRenderHeader: null,
selectorHeaders: 'thead th',
2012-03-07 18:05:06 +00:00
selectorRemove: "tr.remove-me",
2011-06-22 23:19:27 +00:00
tableClass : 'tablesorter',
2012-03-07 18:05:06 +00:00
debug: false,
widgetOptions : {
zebra : [ "even", "odd" ]
}
// 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
2011-08-19 06:24:29 +00:00
function getElementText(config, node, cellIndex) {
var text = "", te = config.textExtraction;
2011-06-22 23:19:27 +00:00
if (!node) { return ""; }
if (!config.supportsTextContent) { config.supportsTextContent = node.textContent || false; }
2011-08-19 06:24:29 +00:00
if (te === "simple") {
2011-06-22 23:19:27 +00:00
if (config.supportsTextContent) {
text = node.textContent;
} else {
if (node.childNodes[0] && node.childNodes[0].hasChildNodes()) {
text = node.childNodes[0].innerHTML;
} else {
text = node.innerHTML;
}
}
} else {
2011-08-19 06:24:29 +00:00
if (typeof(te) === "function") {
2012-03-11 14:45:10 +00:00
text = te(node, tbl, cellIndex);
2012-04-29 02:45:34 +00:00
} else if (typeof(te) === "object" && te.hasOwnProperty(cellIndex)) {
2012-03-11 14:45:10 +00:00
text = te[cellIndex](node, tbl, 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;
}
2011-08-19 06:24:29 +00:00
function trimAndGetNodeText(config, node, cellIndex) {
return $.trim(getElementText(config, node, cellIndex));
2011-06-22 23:19:27 +00:00
}
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];
2011-08-19 06:24:29 +00:00
nodeValue = trimAndGetNodeText(table.config, 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 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, 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: [] };
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) {
t = trimAndGetNodeText(tc, c[0].cells[j], j);
// 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);
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, 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++) {
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]);
}
2011-06-22 23:19:27 +00:00
}
}
2012-05-03 14:46:31 +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;
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' />")
2011-06-22 23:19:27 +00:00
.each(function (index) {
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;
}
2012-04-12 22:05:28 +00:00
// Part of original tablesorter - not even called.
2011-06-22 23:19:27 +00:00
function checkCellColSpan(table, rows, row) {
var i, cell, arr = [],
r = table.tHead.rows,
c = r[row].cells;
for (i = 0; i < c.length; i++) {
cell = c[i];
if (cell.colSpan > 1) {
arr = arr.concat(checkCellColSpan(table, rows, row++)); // what is headerArr?
} else {
if (table.tHead.length === 1 || (cell.rowSpan > 1 || !r[row + 1])) {
arr.push(cell);
}
}
}
return arr;
}
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) {
var h = [], i, l, css = [table.config.cssDesc, table.config.cssAsc];
2011-06-22 23:19:27 +00:00
// remove all header information
$headers.removeClass(css[0]).removeClass(css[1]);
2012-04-12 22:05:28 +00:00
$headers.each(function() {
2011-06-22 23:19:27 +00:00
if (!this.sortDisabled) {
h[this.column] = $(this);
}
});
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-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>');
2011-06-22 23:19:27 +00:00
$("tr:first td", table.tBodies[0]).each(function () {
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, 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-04-20 16:09:43 +00:00
var c = tbl[0].config, cnt = 0, L, t, x, e = c.string[ (c.empties[col] || c.emptyTo ) ];
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; }
2012-04-12 22:05:28 +00:00
if (c.sortLocaleCompare) { return a.localeCompare(b); }
2011-06-22 23:19:27 +00:00
try {
2012-04-12 22:05:28 +00:00
x = /^(\.)?\d/;
2011-06-22 23:19:27 +00:00
L = Math.min(a.length, b.length) + 1;
while (cnt < L && a.charAt(cnt) === b.charAt(cnt) && x.test(b.substring(cnt)) === false && x.test(a.substring(cnt)) === false) { cnt++; }
a = a.substring(cnt);
b = b.substring(cnt);
if (x.test(a) || x.test(b)) {
if (x.test(a) === false) {
return (a) ? 1 : -1;
} else if (x.test(b) === false) {
return (b) ? -1 : 1;
} else {
t = parseFloat(a) - parseFloat(b);
if (t !== 0) { return t; } else { t = a.search(/[^\.\d]/); }
if (t === -1) { t = b.search(/[^\.\d]/); }
a = a.substring(t);
b = b.substring(t);
}
}
return (a > b) ? 1 : -1;
} catch (er) {
return 0;
}
}
2012-04-29 02:45:34 +00:00
function sortTextDesc(a, b, col) {
if (a === b) { return 0; }
2012-04-20 16:09:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
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; }
2012-04-12 22:05:28 +00:00
if (c.sortLocaleCompare) { return b.localeCompare(a); }
2011-08-01 03:15:17 +00:00
return -sortText(a, b);
}
// 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-04-20 16:09:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
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-04-20 16:09:43 +00:00
var c = tbl[0].config, e = c.string[ (c.empties[col] || c.emptyTo ) ];
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-03 14:46:31 +00:00
var $this, $headers, config,
2012-04-12 22:05:28 +00:00
totalRows, $cell, c, i, j, k, a, s, o;
2011-06-22 23:19:27 +00:00
// new blank config object
this.config = {};
// merge and extend.
2012-03-07 18:05:06 +00:00
c = config = $.extend(true, this.config, $.tablesorter.defaults, settings);
2011-06-22 23:19:27 +00:00
// store common expression for speed
tbl = $this = $(this).addClass(this.config.tableClass);
// save the settings where they read
$.data(this, "tablesorter", c);
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
$headers = buildHeaders(this);
// try to auto detect column type, and store in tables config
2012-03-07 18:05:06 +00:00
c.parsers = buildParserCache(this, $headers);
2011-06-22 23:19:27 +00:00
// build the cache for the tbody cells
2012-05-03 14:46:31 +00:00
buildCache(this);
2011-06-22 23:19:27 +00:00
// fixate columns if the users supplies the fixedWidth option
fixColumnWidth(this);
// 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) {
2012-05-03 14:46:31 +00:00
// totalRows = ($this[0].tBodies[0] && $this[0].tBodies[0].rows.length) || 0;
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.
2011-07-17 15:01:18 +00:00
$this.trigger("sortStart", tbl[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-03-08 13:28:07 +00:00
if (this.order[this.count] < 2) { c.sortList.push([i, this.order[this.count]]); }
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-03-08 13:28:07 +00:00
if (this.order[this.count] < 2) { c.sortList.push([i, this.order[this.count]]); }
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
$this.trigger("sortBegin", tbl[0]);
2012-03-22 15:03:24 +00:00
// set css for headers
setHeadersCss($this[0], $headers, c.sortList);
2012-05-03 14:46:31 +00:00
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
$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);
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-03 14:46:31 +00:00
var 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-03 14:46:31 +00:00
tbodyindex = $(cell).closest('tbody').index();
table.cache[tbodyindex].normalized[pos[0]][pos[1]] = c.parsers[pos[1]].format(getElementText(c, cell, pos[1]), $this, cell, pos[1]);
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,
dat = [], l = $row[0].cells.length,
tbodyindex = $row.closest('tbody').index();
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-03 14:46:31 +00:00
dat[j] = c.parsers[j].format(getElementText(c, $row[i].cells[j], j), $this, $row[i].cells[j], j );
2011-09-08 16:28:10 +00:00
}
// add the row index to the end
2012-05-03 14:46:31 +00:00
dat.push(c.cache[tbodyindex].row.length);
2011-09-08 16:28:10 +00:00
// update cache
2012-05-03 14:46:31 +00:00
c.cache[tbodyindex].row.push([$row[i]]);
c.cache[tbodyindex].normalized.push(dat);
2011-09-08 16:28:10 +00:00
dat = [];
}
// resort using current settings
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-03 14:46:31 +00:00
$this.trigger("sortStart", tbl[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) {
getWidgetById(id).format(this);
})
.bind("applyWidgets", function () {
// 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) {
$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-02-21 00:14:25 +00:00
this.hasInitialized = true;
2012-05-03 14:46:31 +00:00
$this.trigger('tablesorter-initialized', this);
if (typeof c.initialized === 'function') { c.initialized(this); }
2011-06-22 23:19:27 +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);
}
};
2011-07-17 15:01:18 +00:00
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; }
if (tbl[0].config.usNumberFormat) {
// 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
};
2011-07-17 15:01:18 +00:00
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) {
return $.trim(s.toLocaleLowerCase());
},
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); // <20>$<24><><EFBFBD><EFBFBD>?.
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-03 14:46:31 +00:00
var $tr, 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() {
$tr = $(this);
// style children rows the same way the parent row was styled
if (!$tr.hasClass(child)) { row++; }
even = (row % 2 === 0);
$tr
.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);