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',但它没有用。树存储代码如上所示。