Login Register

modif

Size modified on the grid when Grid.update () called

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 :

function createGrid (sResponse, ioArgs) {
            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();
        }
Syndicate content