prevent_cache

enables/disables caching of GET requests in the browser

boolean prevent_cache;

Example

scheduler.config.prevent_cache = true;
...
scheduler.init('scheduler_here',new Date(2009,10,1),"month");


Default value:

false

Related samples

Details

Enabling the property is recommended.

Back to top