Added refresh button

This commit is contained in:
Thomas Forgione 2018-12-04 15:31:04 +01:00
parent bbcf623c63
commit 3c016c8fa0
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 10 additions and 2 deletions

View File

@ -7,6 +7,7 @@ var calendar;
function getTable() {
// Send XHR to totalTable
resultDiv.innerHTML = '';
loadingDiv.style.display = "";
errorDiv.style.display = "none";
@ -27,7 +28,6 @@ function getTable() {
}
function setData(events) {
console.log(events);
loadingDiv.style.display = "none";
errorDiv.style.display = "none";
calendar = new FullCalendar.Calendar(resultDiv, {
@ -41,10 +41,18 @@ function setData(events) {
eventClick: function(info) {
info.jsEvent.preventDefault();
},
customButtons: {
refreshCalendar: {
text: "Refresh",
click: function() {
getTable();
},
},
},
header: {
left: 'title',
center: '',
right: 'month,agendaWeek,agendaDay prev,next today'
right: 'refreshCalendar month,agendaWeek,agendaDay prev,next today'
}
});
calendar.render();