How to refresh datagrid
问题 I create dojox.grid.datagrid and I fill content from array like on example last example on page. During time, I change value of that array in code. How to refresh content of that grid ? How to load new data from changed array ? 回答1: To change values in the grid, you will need to change the value in the grid's store. The grid data is bound to the store data, and the grid will update itself as needed. So the key is to understand Dojo's data api and how stores work in Dojo. Rather than