Hi all,
I am using the jqxGrid displaying the content of a SQL database using the Entity framework in an ASP.net MVC project.
I have setup the grid to get data from the controller in JSON. The data source looks something like this:
var source =
{
datatype: "json",
datafields: [ ...... ],
url: 'MyController/MyAction',
.......
};
I was testing if the grid calls ‘MyAction’ when refreshing the page. And it does call it every time I refresh either Chrome or Firefox. With Internet Explorer, it only calls it once when opening the browser and seems to cache the content of the grid. It only calls again ‘MyAction’ when i clear IE’s cache.
Well as you can imagine, i would like to get IE to get the actual data instead of caching this.
Is there a way to particularly force the grid to get it everytime ?
Thanks in advance