Updating the Navigator with External call to event data
6 years ago.
I have successfully retrieved external data into my schedule utilizing
dp.events.load("/loadvgames.php",
function success(args) {
dp.message("Events loaded");
},
function error(args) {
dp.message("Loading failed.");
}
);
dp.init();
However, the navigator does not update the busy days notification. I have tried using the same type of code for nav.events.list and nav.events.list.load("/loadvgames.php"); without success. Is there a similar method to the dp.events.load for the navigator control?
DayPilot