Hi,
First of all, all my apologizes for my english mistakes.
I have a problem using dojox.grid. I have a button that call an xhrGet to retrieve a Json file on the server. This xhrGet call a function, this one :
var grid = dijit.byId("gridu");
var store = new dojo.data.ItemFileReadStore({data: sResponse });
var gridModel = new dojox.grid.data.DojoData(null, store, {query:{date: '*'}, clientSort:true});
grid.setModel(gridModel);
grid.refresh();
}
