Day load mode and prevent_cache property

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”);

I have the same problem.

Trying to use prevent_cache = true but the calendar is not reloading events from the server when I navigate forward and back.
This way new events are not loaded until you refresh the page.

Thank you,
Michele

Hello,
try the last code snippet from this topic viewtopic.php?f=25&t=38390&p=119676&hilit=clear+all+dynamic+loading#p119676

Hello,

this works, thank you.

problem solved.

Michele