2011-08-23 126 views
1

我需要在我的網站上顯示數據網格。當用戶登錄網站時,會發送ajax請求以獲取網格的全部數據。之後,單元更新將從dojo ajax請求到服務器(json響應)。那麼如何自動更新那些僅在數據網格中的單元格。更新dojo datagrid

回答

1

的DataGrid商店更新項目:

grid.store.fetch({query:{/*find items to update*/}, 
    onItem : function(gridItem){ 
    grid.store.setValue(gridItem, attr, value); 
}); 
grid.store.save(); 

設置要更新從XHR響應適當的值的屬性。