I am using day load mode to load the scheduler and need to be able to re-load the data anytime the view or the date is changed even for already shown dates. It seems that the scheduler caches the data as each day is viewed. I tried setting the scheduler.config.prevent_cache property to true, however I still do not see the GET method invoked for already visited dates:
http://localhost/myapp/scheduler/eventsdata.do?from=2014-11-17&to=2014-11-18
Please advise on how best to do this. My code is shown below for reference:
scheduler.clearAll();
scheduler.config.multi_day = true;
scheduler.config.prevent_cache = true;
scheduler.setLoadMode(“day”);
scheduler.init(‘scheduler_here’, scheduler._date, “unit”);