I am populating my grid with thisLooking for a way to clear the grid on the start of another tool... var data = arrayUtils.map(featureSet.features, function (entry, i) { return { NAME: entry.attributes.SITENAME, REGION: entry.attributes.REGION, WATERBODY: entry.attributes.WATERBODY, TYPE: entry.attributes.TYPE, ACCESSAREA: entry.attributes.ACCESSAREA, LOCATION: entry.attributes.LOCATION }; }); grid.store.setData(data); grid.refresh();I tried to create a new Grid and clear it but not having luck....any thoughts?var newStore = new dojo.data.ItemFileReadStore({data: { identifier: "", items: []}}); var grid = dijit.byId("grid"); grid.setStore(newStore); }