グリッド パネルがあり、ストアに埋め込むデータを取得したい
json は次のようになります (embed
埋め込みデータです)
({"total":"20","results":[{...}], "embed": [{...}] })
関数embed
でデータを取得する方法。load
ありがとう
var store = Ext.create('Ext.data.Store', {
model: 'MyDataObject',
autoLoad: true,
pageSize:10,
proxy: {
type: 'ajax',
url: 'data.php',
reader: {
type: 'json',
totalProperty: 'total', // total data
root: 'results'
}
}
,listeners: {
load: function( store, records, successful, eOpts ){
if (successful) {
alert(store.embed) // ?? how to get it
}
}
}
});