Extjs 3.3 - JsonWriter - how to save all rows and not just the dirty rows?
Extjs 3.3 - JsonWriter - how to save all rows in a grid and 开发者_Go百科not just the dirty rows?
Maybe do something like this before the write call -
myGrid.getStore().getRange().forEach(function(r){ r.markDirty();});
精彩评论