Hi. It is possible to do an autorefresh of the calendarevents automatically every X seconds?
I've createdthe followingjavascript, but when I'm using the application in VS Debug mode, it raises an error very frequently in an script line:var $G=eval("("+$G+")") It seems that I'm missing something
setTimeout(reloadCalendar, 30000);
function reloadCalendar() {
try{
dpc1.commandCallBack('refresh');
}catch(e){
}
setTimeout(reloadCalendar, 30000);
}