Datatables wired up on series grid

This commit is contained in:
Mark McDowall
2013-02-13 00:32:17 -06:00
committed by kay.one
parent 2a72063c19
commit 1671fd1776
24 changed files with 12335 additions and 45 deletions

View File

@@ -0,0 +1,51 @@
//Hidden title string sorting
$.extend(jQuery.fn.dataTableExt.oSort, {
"title-string-pre": function (a) {
return a.match(/title="(.*?)"/)[1].toLowerCase();
},
"title-string-asc": function (a, b) {
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
},
"title-string-desc": function (a, b) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0));
}
});
//bestDateString sorting
$.extend(jQuery.fn.dataTableExt.oSort, {
"best-date-pre": function (a) {
var match = a.match(/data-date="(.*?)"/)[1];
if (match === '')
return Date.create().addYears(100);
return Date.create(match);
},
"best-date-asc": function (a, b) {
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
},
"best-date-desc": function (a, b) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0));
}
});
//Skip articles sorting
$.extend(jQuery.fn.dataTableExt.oSort, {
"skip-articles-pre": function (a) {
return a.replace(/^(the|an|a|) /i, "");
},
"skip-articles-asc": function (a, b) {
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
},
"skip-articles-desc": function (a, b) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0));
}
});