0
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',但它没有用。上面给出了树存储代码。

4

0 回答 0