Store teljes tartalma JSON alakban:
Ext.override(Ext.data.Store, {
toJSON: function () {
var items = [];
this.each(function (record) {
items.push(Ext.encode(record.data));
});
return '[' + items.join(',') + ']';
}
});
toJSON: function () {
var items = [];
this.each(function (record) {
items.push(Ext.encode(record.data));
});
return '[' + items.join(',') + ']';
}
});