Is there a method allowing me to return my stored data in an ExtJS Grid Panel exactly the way I loaded it using:
var data = [\"value1\", \"value2\"] Store.lo
Here is another simple clean way:
var jsonArr = []; grid.getStore().each( function (model) { jsonArr.push(model.data); });