Все равно белый лист
тогда проверяйте , что в data приходит
console.log('data = ', data);
, чтобы вы могли посмотреть, что напишет консоль. window.addEvent('domready',function(){
var request = new XMLHttpRequest();
request.open('GET', 'eventFeed.php', true);
request.onload = function () {
// begin accessing JSON data here
var data = JSON.parse(this.response);
console.log('data = ', data);
for (var i = 0; i < data.length; i++) {
console.log(data[i].title + ' is a ' + data[i].start + '.');
}
new Calendar({
calContainer:'calBody',
newDate:'04/05/2018',
cEvents: data
});
}
})
window.addEvent('domready',function(){
var request = new XMLHttpRequest();
request.open('GET', 'eventFeed.php', true);
request.onload = function () {
// begin accessing JSON data here
var data = JSON.parse(this.response);
for (var i = 0; i < data.length; i++) {
console.log(data[i].title + ' is a ' + data[i].start + '.');
}
new Calendar({
calContainer:'calBody',
newDate:'04/05/2018',
cEvents: data
});
}
})
замените на