I'm using 1.7.2 When I add an item to objectstore I write

dataStore.newItem(data);

Then I tried saving dataStore.save() and then dijit.byId(gridId)._refresh() But browser hangs up.

I also tried re-assigning same store again to grid after adding item. Still no success

有帮助吗?

解决方案

Try calling

        dijit.byId(gridId).resize()

其他提示

Use the grid's setQuery method.

dijit.byId(gridId).setQuery(query);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top