Ext.define('Test.store.MyTree',{
extend:'Ext.data.TreeStore',
id: 'Tree1',
model: 'Test.model.MyTree',
autoLoad: false,
actionMethods: {create: 'POST', read: 'POST', update: 'POST', destroy: 'POST'},
proxy: {
type: 'ajax',
url : '',
actionMethods: {create: 'POST', read: 'POST', update: 'POST', destroy: 'POST'},
reader: {
type:'t-reader',
root: 'books',
successProperty : 'success'
},
jsonData: null,
headers: {
'Content-Type': 'application/json'
}
}});
======================
ツリーを初めてロードするときに、ツリー列のデータをソートするにはどうすればよいですか? 「folderSort: true」を使用してみましたが、うまくいきませんでした。ツリー ストア コードは上記のとおりです。