mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
134 lines
4.3 KiB
JavaScript
134 lines
4.3 KiB
JavaScript
/* TableSorter 2.0 Widgets */
|
|
(function($){
|
|
// Add jQuery UI theme widget
|
|
// **************************
|
|
$.tablesorter.addWidget({
|
|
id: "uitheme",
|
|
format: function(table) {
|
|
var time, klass, rmv, c = table.config,
|
|
// ["up/down arrow (cssHeaders, unsorted)", "down arrow (cssDesc, descending)", "up arrow (cssAsc, ascending)" ]
|
|
icons = ["ui-icon-arrowthick-2-n-s", "ui-icon-arrowthick-1-s", "ui-icon-arrowthick-1-n"];
|
|
if (c.widgetUitheme && c.widgetUitheme.hasOwnProperty('css')) { icons = c.widgetUitheme.css || icons; }
|
|
rmv = icons.join(' ');
|
|
if (c.debug) {
|
|
time = new Date();
|
|
}
|
|
if (!$(table).is('.ui-theme')) {
|
|
$(table).addClass('ui-widget ui-widget-content ui-corner-all ui-theme');
|
|
$.each(c.headerList, function(){
|
|
$(this)
|
|
// using "ui-theme" class in case the user adds their own ui-icon using onRenderHeader
|
|
.addClass('ui-widget-header ui-corner-all')
|
|
.append('<span class="ui-icon"/>')
|
|
.hover(function(){
|
|
$(this).addClass('ui-state-hover');
|
|
}, function(){
|
|
$(this).removeClass('ui-state-hover');
|
|
});
|
|
});
|
|
}
|
|
$.each(c.headerList, function(i){
|
|
if (c.headers[i] && c.headers[i].sorter === false) {
|
|
// no sort arrows for disabled columns!
|
|
$(this).find('span.ui-icon').removeClass(rmv + ' ui-icon');
|
|
} else {
|
|
klass = ($(this).is('.' + c.cssAsc)) ? icons[1] : ($(this).is('.' + c.cssDesc)) ? icons[2] : $(this).is('.' + c.cssHeader) ? icons[0] : '';
|
|
$(this)[klass === icons[0] ? 'removeClass' : 'addClass']('ui-state-active')
|
|
.find('span.ui-icon').removeClass(rmv).addClass(klass);
|
|
}
|
|
});
|
|
if (c.debug) {
|
|
$.tablesorter.benchmark("Applying uitheme widget", time);
|
|
}
|
|
}
|
|
});
|
|
|
|
// Add Column styles widget
|
|
// **************************
|
|
$.tablesorter.addWidget({
|
|
id: "columns",
|
|
format: function(table) {
|
|
var $td, time, i, last, rmv,
|
|
c = table.config,
|
|
list = c.sortList,
|
|
len = list.length,
|
|
css = [ "primary", "secondary", "tertiary" ];
|
|
if (c.widgetColumns && c.widgetColumns.hasOwnProperty('css')) { css = c.widgetColumns.css || css; }
|
|
last = css.length-1;
|
|
rmv = css.join(' ');
|
|
if (c.debug) {
|
|
time = new Date();
|
|
}
|
|
// check if there is a sort (on initialization there may not be one)
|
|
if (list && list[0]) {
|
|
// loop through the visible rows
|
|
$("tr:visible", table.tBodies[0]).each(function (i) {
|
|
$td = $(this).children().removeClass(rmv);
|
|
// primary sort column class
|
|
$td.eq(list[0][0]).addClass(css[0]);
|
|
if (len > 1) {
|
|
for (i=1; i<len; i++){
|
|
// secondary, tertiary, etc sort column classes
|
|
$td.eq(list[i][0]).addClass( css[i] || css[last] );
|
|
}
|
|
}
|
|
});
|
|
}
|
|
if (c.debug) {
|
|
$.tablesorter.benchmark("Applying Columns widget", time);
|
|
}
|
|
}
|
|
});
|
|
|
|
// Add Filter widget
|
|
// ** This widget doesn't work correctly with the pager plugin =( **
|
|
// **************************
|
|
$.tablesorter.addWidget({
|
|
id: "filter",
|
|
format: function(table) {
|
|
if (!table.config.filtering) {
|
|
var i, v, r, t, $td, c = table.config,
|
|
cols = c.headerList.length,
|
|
tbl = $(table),
|
|
fr = '<tr class="filters">',
|
|
time;
|
|
if (c.debug) {
|
|
time = new Date();
|
|
}
|
|
for (i=0; i < cols; i++){
|
|
fr += '<td><input type="text" class="filter" data-col="' + i + '" style="';
|
|
// use header option - headers: { 1: { filter: false } } OR add class="filter-false"
|
|
fr += ((c.headers[i] && 'filter' in c.headers[i] && c.headers[i].filter === false) || $(c.headerList[i]).is('.filter-false') ) ? 'visibility:hidden' : '';
|
|
fr += '"></td>';
|
|
}
|
|
tbl
|
|
.find('thead').append(fr += '</tr>')
|
|
.find('.filter').bind('keyup', function(e){
|
|
v = tbl.find('.filter').map(function(){ return ($(this).val() || '').toLowerCase(); }).get();
|
|
if (v.join('') === '') {
|
|
tbl.find('tr').show();
|
|
} else {
|
|
tbl.find('tbody').find('tr').each(function(){
|
|
r = true;
|
|
$td = $(this).find('td');
|
|
for (i=0; i < cols; i++){
|
|
if (v[i] !== '' && $td.eq(i).text().toLowerCase().indexOf(v[i]) >= 0) {
|
|
r = (r) ? true : false;
|
|
} else if (v[i] !== '') {
|
|
r = false;
|
|
}
|
|
}
|
|
$(this)[r ? 'show' : 'hide']();
|
|
});
|
|
}
|
|
tbl.trigger('applyWidgets'); // make sure zebra widget is applied
|
|
});
|
|
c.filtering = true;
|
|
if (c.debug) {
|
|
$.tablesorter.benchmark("Applying Filter widget", time);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
})(jQuery); |