var userGrid = dijit.byId("grid");
var store = new dojo.data.ItemFileWriteStore({url:"srvLinkGrid"});
var gridModel = new dojox.grid.data.DojoData(null, store, {query:{idx: '*'}, clientSort:true});
userGrid.setModel(gridModel);
userGrid.refresh();
var store = new dojo.data.ItemFileWriteStore({url:"srvLinkGrid"});
var gridModel = new dojox.grid.data.DojoData(null, store, {query:{idx: '*'}, clientSort:true});
userGrid.setModel(gridModel);
userGrid.refresh();
I know I'm beating a dead horse but this code works in FF and Safari. But it will not refresh the grid in IE. Been reading the FAQ's and trying things but no luck. If anyone has a code example where it works in IE it would be greatly appreciated.
Thank you

Might I suggest a slightly
Might I suggest a slightly different approach for this. The following code works for me for refreshing a DataGrid's view:
{
grid.store.close();
grid.setStore(new dojo.data.ItemFileReadStore(
{url: '/gridData',
urlPreventCache: true}));
}
Correct!
You are correct. I used preventCache: true and as needed sync: true and that solves the problem. IE just loves caching data...
Thank you