IE11 refresh issue on serverside datatable

Hi,

  I have a datatable which Is getting data using a php server side script.

Some fields in datatable are editable on click. These fields also are updated
on database using a php server side script.
The issue is if I click on refresh on IE11 browser, the initial page is loaded
of the datatable, not the latest one, which contains updated fields from database.
An workaround is to check in IE11 in “internet options-settings-check every time when I visit …”. In chrome or firefox I don’t have this issue. How can I fix this behavior?

Hi,

you can use POST method to load to prevent caching:

webix.ui({
     view:"datatable",
     ...
     url:"post->some.php"
});
// or
$$("table").load("post->some.php");

Or you can add a unique parameter in case of GET (default):

...
url:"some.php?uid="+webix.uid()
...