tablesorter/js/jquery.tablesorter.js

1189 lines
39 KiB
JavaScript
Raw Normal View History

2012-05-28 13:41:12 +00:00
/*!
2012-06-21 14:29:52 +00:00
* TableSorter 2.3.10 - 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-06-21 14:29:52 +00:00
this.version = "2.3.10";
2012-03-18 14:02:49 +00:00
var parsers = [], widgets = [];
2011-06-22 23:19:27 +00:00
this.defaults = {
2012-05-07 03:06:54 +00:00
// appearance
2012-05-28 15:01:40 +00:00
widthFixed : false, // adds colgroup to fix widths of columns
2012-05-07 03:06:54 +00:00
// 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"
2012-05-08 19:46:13 +00:00
delayInit : false, // if false, the parsed table contents will not update until the first sort.
2012-05-07 03:06:54 +00:00
// 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
2012-05-28 15:01:40 +00:00
widgets: [], // method to add widgets, e.g. widgets: ['zebra']
2012-05-07 03:06:54 +00:00
widgetOptions : {
zebra : [ "even", "odd" ] // zebra widget alternating row class names
},
2012-05-23 17:11:30 +00:00
initWidgets : true, // apply widgets on tablesorter initialization
2012-05-07 03:06:54 +00:00
// 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',
2012-05-07 03:06:54 +00:00
selectorRemove : "tr.remove-me",
// advanced
debug : false,
// Internal variables
headerList: [],
2012-04-20 16:09:43 +00:00
empties: {},
strings: {},
2012-05-28 15:01:40 +00:00
parsers: []
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) {
2011-06-22 23:19:27 +00:00
if (!node) { return ""; }
2012-05-28 15:01:40 +00:00
var c = table.config,
t = c.textExtraction, text = "";
2012-05-07 03:06:54 +00:00
if (t === "simple") {
2012-05-28 15:01:40 +00:00
if (c.supportsTextContent) {
text = node.textContent; // newer browsers support this
} else {
text = $(node).text();
2012-05-28 15:01:40 +00:00
}
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 {
2012-05-28 15:01:40 +00:00
text = c.supportsTextContent ? node.textContent : $(node).text();
2011-06-22 23:19:27 +00:00
}
}
2012-05-11 17:46:54 +00:00
return $.trim(text);
2011-06-22 23:19:27 +00:00
}
/* 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-11 17:46:54 +00:00
nodeValue = getElementText(table, node, cellIndex);
2011-06-22 23:19:27 +00:00
if (table.config.debug) {
2012-05-23 17:11:30 +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];
}
function buildParserCache(table, $headers) {
2012-05-23 17:11:30 +00:00
var c = table.config,
2012-05-28 15:01:40 +00:00
tb = $(table.tBodies).filter(':not(.' + c.cssInfoBlock + ')'),
ts = $.tablesorter, rows, list, l, i, h, m, ch, cl, p, parsersDebug = "";
if ( tb.length === 0) { return; } // In the case of empty tables
rows = tb[0].rows;
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++) {
2012-05-20 13:24:22 +00:00
// tons of thanks to AnthonyM1229 for working out the following selector (issue #74) to make this work in IE8!
h = $headers.filter(':not([colspan])[data-column="'+i+'"]:last,[colspan="1"][data-column="'+i+'"]:last');
2012-04-20 16:09:43 +00:00
ch = c.headers[i];
// get column parser
p = getParserById( ts.getData(h, ch, 'sorter') );
2012-04-20 16:09:43 +00:00
// empty cells behaviour - keeping emptyToBottom for backwards compatibility.
c.empties[i] = ts.getData(h, ch, 'empty') || c.emptyTo || (c.emptyToBottom ? 'bottom' : 'top' );
2012-04-20 16:09:43 +00:00
// text strings behaviour in numerical sorts
c.strings[i] = ts.getData(h, ch, '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, 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)) {
2012-05-28 15:01:40 +00:00
$(b[k]).addClass('tablesorter-hidden');
2012-05-05 01:42:04 +00:00
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-11 17:46:54 +00:00
t = getElementText(table, c[0].cells[j], j);
2012-05-07 19:22:24 +00:00
// allow parsing if the string is empty, previously parsing would change it to zero,
// in case the parser needs to extract data from the table cell attributes
2012-05-05 01:42:04 +00:00
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
}
2012-05-28 15:01:40 +00:00
$(b[k]).removeClass('tablesorter-hidden');
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) {
2012-05-28 15:01:40 +00:00
var tc = table.config, c = tc.widgets,
time, i, w, l = c.length;
if (tc.debug) {
time = new Date();
}
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 ) {
2012-05-23 17:11:30 +00:00
if (init === true && w.hasOwnProperty('init')) {
2012-02-21 00:14:25 +00:00
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-28 15:01:40 +00:00
if (tc.debug) {
benchmark("Completed " + (init === true ? "initializing" : "applying") + " widgets", time);
}
2011-06-22 23:19:27 +00:00
}
2012-05-23 17:11:30 +00:00
// init flag (true) used by pager plugin to prevent widget application
function appendToTable(table, init) {
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-19 20:46:14 +00:00
r, n, totalRows, checkCell, c2 = c.cache,
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)){
2012-05-28 15:01:40 +00:00
$(b[k]).addClass('tablesorter-hidden');
2012-05-05 01:42:04 +00:00
f = document.createDocumentFragment();
2012-05-19 20:46:14 +00:00
r = c2[k].row;
n = c2[k].normalized;
2012-05-05 01:42:04 +00:00
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);
2012-05-28 15:01:40 +00:00
$(b[k]).removeClass('tablesorter-hidden');
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
2012-05-23 17:11:30 +00:00
if (!init) { applyWidget(table); }
2011-06-22 23:19:27 +00:00
// trigger sortend
2012-03-22 15:03:24 +00:00
$(table).trigger("sortEnd", table);
2011-06-22 23:19:27 +00:00
}
2012-05-23 17:11:30 +00:00
// computeTableHeaderCellIndexes from:
2011-06-22 23:19:27 +00:00
// http://www.javascripttoolbox.com/lib/table/examples.php
// http://www.javascripttoolbox.com/temp/table_cellindex.html
2012-05-23 17:11:30 +00:00
function computeThIndexes(t) {
2011-06-22 23:19:27 +00:00
var matrix = [],
lookup = {},
trs = $(t).find('thead:eq(0) tr'),
2011-06-22 23:19:27 +00:00
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 14:04:17 +00:00
// add data-column
$(c).attr({ 'data-column' : firstAvailCol }); // 'data-row' : rowIndex
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
}
2012-05-28 15:01:40 +00:00
2011-06-22 23:19:27 +00:00
function buildHeaders(table) {
2012-05-23 17:11:30 +00:00
var header_index = computeThIndexes(table), ch, $t,
$th, lock, time, $tableHeaders, c = table.config, ts = $.tablesorter;
c.headerList = [];
2011-09-16 15:43:09 +00:00
if (c.debug) {
2011-06-22 23:19:27 +00:00
time = new Date();
}
2012-05-28 15:01:40 +00:00
$tableHeaders = $(table).find(c.selectorHeaders)
.each(function(index) {
$t = $(this);
ch = c.headers[index];
2012-05-28 15:01:40 +00:00
this.innerHTML = '<div class="tablesorter-header-inner">' + this.innerHTML + '</div>'; // faster than wrapInner
if (c.onRenderHeader) { c.onRenderHeader.apply($t, [index]); }
2011-06-22 23:19:27 +00:00
this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
this.order = formatSortingOrder( ts.getData($t, ch, 'sortInitialOrder') || c.sortInitialOrder ) ? [1,0,2] : [0,1,2];
2012-03-08 13:28:07 +00:00
this.count = -1; // set to -1 because clicking on the header automatically adds one
if (ts.getData($t, ch, 'sorter') === 'false') { this.sortDisabled = true; }
this.lockedOrder = false;
lock = ts.getData($t, ch, 'lockedOrder') || false;
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) {
$th = $t.addClass(c.cssHeader);
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-05-11 17:46:54 +00:00
// add to parent in case there are multiple rows
$t.parent().addClass(c.cssHeader);
2011-06-22 23:19:27 +00:00
});
2012-05-28 15:01:40 +00:00
if (table.config.debug) {
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-08 19:46:13 +00:00
var f, h = [], i, j, 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!
2012-05-28 15:01:40 +00:00
if (h[list[i][0]]) {
// add class if cell exists - fix for issue #78
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] + '"]');
2012-05-07 19:22:24 +00:00
if (l > 1 && f.length) {
2012-05-08 19:46:13 +00:00
for (j = 0; j < f.length; j++) {
if (!f[j].sortDisabled) {
$(f[j]).addClass(css[list[i][1]]);
2012-05-07 19:22:24 +00:00
}
2012-05-08 19:46:13 +00:00
}
2012-05-07 19:22:24 +00:00
}
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]];
if (o) { // prevents error if sorton array is wrong
o.count = s[1] % (c.sortReset ? 3 : 2);
}
2011-06-22 23:19:27 +00:00
}
}
function getCachedSortType(parsers, i) {
2012-05-23 17:11:30 +00:00
return (parsers && parsers[i]) ? 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];
2012-05-08 18:12:55 +00:00
// fallback to natural sort since it is more robust
s = /n/i.test(getCachedSortType(tc.parsers, c)) ? "Numeric" : "Text";
2012-05-03 14:46:31 +00:00
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
}
dynamicExp += "var " + e + " = sort" + s + "(table,a[" + c + "],b[" + c + "]," + c + "," + mx + "," + dir + "); ";
2012-05-03 14:46:31 +00:00
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
}
2012-05-08 18:12:55 +00:00
// Natural sort - https://github.com/overset/javascript-natural-sort
function sortText(table, a, b, col) {
if (a === b) { return 0; }
2012-05-08 18:12:55 +00:00
var c = table.config, e = c.string[ (c.empties[col] || c.emptyTo ) ],
2012-05-05 01:42:04 +00:00
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; }
2012-05-11 17:46:54 +00:00
if (typeof c.textSorter === 'function') { return c.textSorter(a, b, table, col); }
2012-05-05 01:42:04 +00:00
// 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-05-08 18:12:55 +00:00
function sortTextDesc(table, a, b, col) {
if (a === b) { return 0; }
2012-05-08 18:12:55 +00:00
var c = table.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; }
2012-05-11 17:46:54 +00:00
if (typeof c.textSorter === 'function') { return c.textSorter(b, a, table, col); }
2012-05-08 18:12:55 +00:00
return sortText(table, 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-05-08 18:12:55 +00:00
function sortNumeric(table, a, b, col, mx, d) {
if (a === b) { return 0; }
2012-05-08 18:12:55 +00:00
var c = table.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-05-08 18:12:55 +00:00
function sortNumericDesc(table, a, b, col, mx, d) {
if (a === b) { return 0; }
2012-05-08 18:12:55 +00:00
var c = table.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;
}
function checkResort($table, flag, callback) {
var t = $table[0];
if (flag !== false) {
$table.trigger("sorton", [t.config.sortList, function(){
$table.trigger('updateComplete');
if (typeof callback === "function") {
callback(t);
}
}]);
} else {
$table.trigger('updateComplete');
if (typeof callback === "function") {
callback(t);
}
}
}
2011-06-22 23:19:27 +00:00
/* 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-23 17:11:30 +00:00
var $headers, $cell, $this,
c, i, j, k, a, s, o, downTime,
m = $.metadata;
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.
c = $.extend(true, this.config, $.tablesorter.defaults, settings);
2012-05-19 20:46:14 +00:00
if (c.debug) { $.data( this, 'startoveralltimer', new Date()); }
2011-06-22 23:19:27 +00:00
// store common expression for speed
2012-05-08 18:12:55 +00:00
$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);
2012-05-28 13:41:12 +00:00
c.supportsTextContent = $('<span>x</span>')[0].textContent === 'x';
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-08 19:46:13 +00:00
// delayInit will delay building the cache until the user starts a sort
if (!c.delayInit) { 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?
2012-05-28 13:41:12 +00:00
$headers.bind('mousedown.tablesorter mouseup.tablesorter', function(e, external) {
if (e.type === 'mousedown') {
downTime = new Date().getTime();
return !c.cancelSelection;
}
// prevent resizable widget from initializing a sort (long clicks are ignored)
if (external !== true && (new Date().getTime() - downTime > 500)) { return false; }
2012-05-08 19:46:13 +00:00
if (c.delayInit && !c.cache) { buildCache($this[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.
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);
2012-05-23 17:11:30 +00:00
multisort($this[0], c.sortList);
appendToTable($this[0]);
2011-06-22 23:19:27 +00:00
}
2012-05-28 13:41:12 +00:00
});
if (c.cancelSelection) {
2011-06-22 23:19:27 +00:00
// cancel selection
2012-05-28 13:41:12 +00:00
$headers.each(function() {
2012-04-29 02:45:34 +00:00
this.onselectstart = function() {
2011-06-22 23:19:27 +00:00
return false;
};
2012-05-28 13:41:12 +00:00
});
}
2011-06-22 23:19:27 +00:00
// apply easy methods that trigger binded events
2012-05-04 05:59:43 +00:00
$this
.bind("update", function(e, resort, callback) {
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);
checkResort($this, resort, callback);
2011-06-22 23:19:27 +00:00
})
.bind("updateCell", function(e, cell, resort, callback) {
2011-06-22 23:19:27 +00:00
// get position from the dom.
2012-06-03 17:50:38 +00:00
var t = this, $tb = $(this).find('tbody'), row, pos,
2012-03-07 18:05:06 +00:00
// update cache - format: function(s, table, cell, cellIndex)
2012-06-03 17:50:38 +00:00
tbdy = $tb.index( $(cell).closest('tbody') );
row = $tb.eq(tbdy).find('tr').index( $(cell).closest('tr') );
pos = [ row, cell.cellIndex];
2012-05-07 03:06:54 +00:00
t.config.cache[tbdy].normalized[pos[0]][pos[1]] = c.parsers[pos[1]].format( getElementText(t, cell, pos[1]), t, cell, pos[1] );
checkResort($this, resort, callback);
2011-06-22 23:19:27 +00:00
})
.bind("addRows", function(e, $row, resort, callback) {
2012-05-03 14:46:31 +00:00
var i, rows = $row.filter('tr').length,
2012-05-07 19:22:24 +00:00
dat = [], l = $row[0].cells.length, t = this,
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
checkResort($this, resort, callback);
2011-09-08 16:28:10 +00:00
})
.bind("sorton", function(e, list, callback, init) {
2012-05-07 19:22:24 +00:00
$(this).trigger("sortStart", this);
var l = c.headerList.length;
c.sortList = [];
$.each(list, function(i,v){
// make sure column exists
if (v[0] < l) { c.sortList.push(list[i]); }
});
2011-06-22 23:19:27 +00:00
// update header count index
2012-05-07 19:22:24 +00:00
updateHeaderSortCount(this, c.sortList);
2011-06-22 23:19:27 +00:00
// set css for headers
2012-05-07 19:22:24 +00:00
setHeadersCss(this, $headers, c.sortList);
2011-06-22 23:19:27 +00:00
// sort the table and append it to the dom
2012-05-23 17:11:30 +00:00
multisort(this, c.sortList);
appendToTable(this, init);
if (typeof callback === "function") {
callback(this);
}
2011-06-22 23:19:27 +00:00
})
2012-05-23 17:11:30 +00:00
.bind("appendCache", function(e, init) {
appendToTable(this, init);
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);
})
2012-05-23 17:11:30 +00:00
.bind("applyWidgets", function(e, init) {
2011-06-22 23:19:27 +00:00
// apply widgets
2012-05-23 17:11:30 +00:00
applyWidget(this, init);
2012-05-11 17:46:54 +00:00
})
.bind("destroy", function(e,c){
$.tablesorter.destroy(this, c);
2011-06-22 23:19:27 +00:00
});
2012-05-07 19:22:24 +00:00
// get sort list from jQuery data or metadata
if ($this.data() && typeof $this.data().sortlist !== 'undefined') {
c.sortList = $this.data().sortlist;
} else if (m && ($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, {}, !c.initWidgets]);
2012-05-23 17:11:30 +00:00
} else if (c.initWidgets) {
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-19 20:46:14 +00:00
if (c.debug) {
$.tablesorter.benchmark("Overall initialization time", $.data( this, 'startoveralltimer'));
}
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
2012-05-11 17:46:54 +00:00
this.destroy = function(table, removeClasses){
var $t = $(table), c = table.config;
// remove widget added rows
$t.find('thead:first tr:not(.' + c.cssHeader + ')').remove();
// remove resizer widget stuff
$t.find('thead:first .tablesorter-resizer').remove();
// disable tablesorter
$t
.unbind('update updateCell addRows sorton appendCache applyWidgetId applyWidgets destroy mouseup mouseleave')
.find(c.selectorHeaders)
.unbind('click mousedown mousemove mouseup')
.removeClass(c.cssHeader + ' ' + c.cssAsc + ' ' + c.cssDesc);
if (removeClasses !== false) {
$t.removeClass(c.tableClass);
}
};
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);
};
2012-05-08 18:12:55 +00:00
this.formatFloat = function(s, table) {
if (typeof(s) !== 'string' || s === '') { return s; }
2012-05-08 18:12:55 +00:00
if (table.config.usNumberFormat !== false) {
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(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) {
2012-06-03 19:09:18 +00:00
var a, acc = '[', eq = this.characterEquivalents;
if (!this.characterRegex) {
this.characterRegexArray = {};
2012-06-03 19:09:18 +00:00
for (a in eq) {
if (typeof a === 'string') {
2012-06-03 19:09:18 +00:00
acc += eq[a];
this.characterRegexArray[a] = new RegExp('[' + eq[a] + ']', 'g');
}
}
this.characterRegex = new RegExp(acc + ']');
}
if (this.characterRegex.test(s)) {
for (a in eq) {
if (typeof a === 'string') {
s = s.replace( this.characterRegexArray[a], a );
}
}
}
return s;
};
// get sorter, string, empty, etc options for each column from
2012-05-28 15:22:42 +00:00
// jQuery data, metadata, header option or header class name ("sorter-false")
// priority = jQuery data > meta > headers option > header class name
this.getData = function(h, ch, key) {
2012-05-28 15:22:42 +00:00
var val = '', $h = $(h), m, cl;
if (!$h.length) { return ''; }
m = $.metadata ? $h.metadata() : false;
cl = ' ' + ($h.attr('class') || '');
if ($h.data() && ( typeof $h.data(key) !== 'undefined' || typeof $h.data(key.toLowerCase()) !== 'undefined') ){
2012-05-19 20:46:14 +00:00
// "data-lockedOrder" is assigned to "lockedorder"; but "data-locked-order" is assigned to "lockedOrder"
// "data-sort-initial-order" is assigned to "sortInitialOrder"
val += $h.data(key) || $h.data(key.toLowerCase());
} else if (m && typeof m[key] !== 'undefined') {
val += m[key];
} else if (ch && typeof ch[key] !== 'undefined') {
val += ch[key];
2012-05-19 20:46:14 +00:00
} else if (cl && cl.match(' ' + key + '-')) {
// include sorter class name "sorter-text", etc
2012-05-19 20:46:14 +00:00
val = cl.match( new RegExp(' ' + key + '-(\\w+)') )[1] || '';
}
return $.trim(val);
};
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
})();
// make shortcut
var ts = $.tablesorter;
2011-06-22 23:19:27 +00:00
// extend plugin scope
$.fn.extend({
tablesorter: ts.construct
2011-06-22 23:19:27 +00:00
});
// add default parsers
ts.addParser({
id: "text",
2012-05-08 18:12:55 +00:00
is: function(s, table, node) {
2011-06-22 23:19:27 +00:00
return true;
},
2012-05-08 18:12:55 +00:00
format: function(s, table, cell, cellIndex) {
var c = table.config;
s = $.trim( c.ignoreCase ? s.toLocaleLowerCase() : s );
return c.sortLocaleCompare ? ts.replaceAccents(s) : s;
2011-06-22 23:19:27 +00:00
},
type: "text"
});
ts.addParser({
id: "currency",
2012-04-29 02:45:34 +00:00
is: function(s) {
2012-05-11 17:46:54 +00:00
return (/^\(?[\u00a3$\u20ac\u00a4\u00a5\u00a2?.]\d+/).test(s); // £$€¤¥¢
2011-06-22 23:19:27 +00:00
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
return ts.formatFloat(s.replace(/[^\w,. \-()]/g, ""), table);
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "ipAddress",
is: function(s) {
return (/^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$/).test(s);
2011-06-22 23:19:27 +00:00
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
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 === 1) {
r += "00" + item;
} else if (item.length === 2) {
2011-06-22 23:19:27 +00:00
r += "0" + item;
} else {
r += item;
}
}
return ts.formatFloat(r, table);
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "url",
is: function(s) {
2012-06-03 16:06:57 +00:00
return (/^(https?|ftp|file):\/\//).test(s);
2011-06-22 23:19:27 +00:00
},
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);
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
return ts.formatFloat((s !== "") ? (new Date(s.replace(/-/g, "/")).getTime() || "") : "", table);
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "percent",
is: function(s) {
2012-05-11 17:46:54 +00:00
return (/\d%\)?$/).test(s);
2011-06-22 23:19:27 +00:00
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
return ts.formatFloat(s.replace(/%/g, ""), table);
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
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
return ts.formatFloat( (new Date(s).getTime() || ''), table);
2011-06-22 23:19:27 +00:00
},
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) {
// testing for ####-##-#### - so it's not perfect
return (/^(\d{2}|\d{4})[\/\-\,\.\s+]\d{2}[\/\-\.\,\s+](\d{2}|\d{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) {
2012-05-19 20:46:14 +00:00
var c = table.config, ci = c.headerList[cellIndex],
format = ci.shortDateFormat;
if (typeof format === 'undefined') {
// cache header formatting so it doesn't getData for every cell in the column
format = ci.shortDateFormat = ts.getData( ci, c.headers[cellIndex], 'dateFormat') || c.dateFormat;
}
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 ts.formatFloat( (new Date(s).getTime() || ''), table);
2011-06-22 23:19:27 +00:00
},
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);
},
2012-05-08 18:12:55 +00:00
format: function(s, table) {
return ts.formatFloat( (new Date("2000/01/01 " + s).getTime() || ''), table);
2011-06-22 23:19:27 +00:00
},
type: "numeric"
});
ts.addParser({
id: "digit",
is: function(s) {
return ts.isDigit(s);
},
format: function(s, table) {
return ts.formatFloat(s.replace(/[^\w,. \-()]/g, ""), table);
},
type: "numeric"
});
2011-06-22 23:19:27 +00:00
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-28 15:22:42 +00:00
var $tb, $tv, $tr, row, even, time, k, l,
2012-03-07 18:05:06 +00:00
c = table.config,
2012-05-19 20:46:14 +00:00
child = new RegExp(c.cssChildRow, 'i'),
2012-05-11 17:46:54 +00:00
b = $(table).children('tbody:not(.' + c.cssInfoBlock + ')'),
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;
if (c.debug) {
2011-06-22 23:19:27 +00:00
time = new Date();
}
2012-05-03 14:46:31 +00:00
for (k = 0; k < b.length; k++ ) {
// loop through the visible rows
2012-05-19 20:46:14 +00:00
$tb = $(b[k]);
l = $tb.children('tr').length;
if (l > 1) {
2012-05-28 15:01:40 +00:00
row = 0;
$tv = $tb.find('tr:visible');
$tb.addClass('tablesorter-hidden');
// revered back to using jQuery each - strangely it's the fastest method
$tv.each(function(){
$tr = $(this);
// style children rows the same way the parent row was styled
if (!child.test(this.className)) { row++; }
even = (row % 2 === 0);
$tr.removeClass(css[even ? 1 : 0]).addClass(css[even ? 0 : 1]);
});
$tb.removeClass('tablesorter-hidden');
2012-05-03 14:46:31 +00:00
}
}
if (c.debug) {
ts.benchmark("Applying Zebra widget", time);
2011-06-22 23:19:27 +00:00
}
}
});
})(jQuery);