私はdojo1.7に取り組んでいます。最新のデータで更新する必要がある EnhancedGrid があります。
var gridStore = new dojo.data.ItemFileWriteStore({ url:'', data:result, urlPreventCache: false });
grid.store=gridStore;
grid._refresh();
必要な形式でデータを取得しています
var result = { "identifier": "id",
"items": [] //jsonobject };
上記のコードは Firefox では問題なく動作しますが、IE では「null is null or not an object」というエラーが発生します。IEで何が問題になっているのかわかりません。dojo1.7 でストアを変更する他の方法はありますか?
前もって感謝します!