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
Try this:
myStore.each( function (model) { console.log( model.get('name') ); });