Check documentation for the latest version of dhtmlxSuite preventIECaching DHTMLX Docs

preventIECaching

prevents caching in IE by adding random values to URL string

void preventIECaching(boolean mode);
modebooleanenable/disable random values in URLs (disabled by default)

Example

//enable preventing IE caching mode
myGrid.preventIECaching(true);
//disable preventing IE caching mode
myGrid.preventIECaching(false);

Back to top