jquery.tabulator
Version:
Interactive table generation plugin for jQuery UI
65 lines (51 loc) • 1.45 kB
JavaScript
var FooterManager = function(table){
this.table = table;
this.active = false;
this.element = $("<div class='tabulator-footer'></div>"); //containing element
this.links = [];
this._initialize();
};
FooterManager.prototype._initialize = function(element){
if(this.table.options.footerElement){
this.element = this.table.options.footerElement;
}
};
FooterManager.prototype.getElement = function(){
return this.element;
};
FooterManager.prototype.append = function(element, parent){
this.activate(parent);
this.element.append(element);
this.table.rowManager.adjustTableSize();
};
FooterManager.prototype.prepend = function(element, parent){
this.activate(parent);
this.element.prepend(element);
this.table.rowManager.adjustTableSize();
};
FooterManager.prototype.remove = function(element){
element.remove();
this.deactivate();
};
FooterManager.prototype.deactivate = function(force){
if(this.element.is(":empty") || force){
this.element.remove();
this.active = false;
}
// this.table.rowManager.adjustTableSize();
}
FooterManager.prototype.activate = function(parent){
if(!this.active){
this.active = true;
this.table.element.append(this.getElement());
this.table.element.show();
}
if(parent){
this.links.push(parent);
}
}
FooterManager.prototype.redraw = function(){
this.links.forEach(function(link){
link.footerRedraw();
});
};