IE11 wont refresh calenderdata while Chrome will

Heya guys!

Currently my application will work perfectly fine on Google Chrome, insert/delete/update works without any issues using the Scheduler and the calender reflects these changes. The problem arises when I try using the application in IE11, I’ve put debug points in the code (It’s an ASP.NET MVC 4 web application) and am able to see that I can successfully insert/delete/update events using IE11, but it will only reflect these changes in the calenderview itself until I refresh/update the page. The moment I refresh/update the page, it all goes back to looking like earlier, containing events which I’ve already deleted and/or updated and/or created (in this case, the event isn’t shown even if its contained in the database).

What could be causing this malfunction in IE11 when it works flawlessly in Google Chrome?

Hello,
maybe IE caches the ajax data request, try adding following config:

scheduler.config.prevent_cache = true;

Seems to have done the trick, thank you Aliaksandr!