ExtJS树存储 - 如何在加载树时对树列上的数据进行排序

时间:2013-10-31 18:11:41

标签: extjs4.1

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

0 个答案:

没有答案