mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Miglioramento modulo Statistiche
This commit is contained in:
33
modules/statistiche/js/stats/table.js
Normal file
33
modules/statistiche/js/stats/table.js
Normal file
@ -0,0 +1,33 @@
|
||||
class Table extends Stat {
|
||||
constructor(calendar, file, data = {}, id){
|
||||
super(calendar, file, data);
|
||||
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
add(start, end) {
|
||||
var id = this.id;
|
||||
var calendar_id = this.calendar.id;
|
||||
|
||||
this.getData(start, end, function(data) {
|
||||
var row = $(id).find("#row-" + calendar_id);
|
||||
|
||||
if (!row.length) {
|
||||
$(id).append(data);
|
||||
} else {
|
||||
row.after(data);
|
||||
row.remove();
|
||||
}
|
||||
|
||||
$(id).find("#row-" + calendar_id).effect("highlight", {}, 3000);
|
||||
});
|
||||
}
|
||||
|
||||
update(start, end) {
|
||||
this.add(start, end)
|
||||
}
|
||||
|
||||
remove() {
|
||||
$(this.id).find("#row-" + this.calendar.id).remove();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user