3

我有从 php 服务获取数据的列表,收到的数据按我需要的顺序排列。但是 sencha 会自动按字母顺序对我的列表进行排序。下面是我的代码:

Ext.define('MyList', {
    extend: 'Ext.dataview.List',

    config:     {
        grouped: true,
        plugins: [
            {
                xclass:          'Ext.plugin.PullRefresh',
                pullRefreshText: 'Pull down to refresh'

            },
            {
                xclass:     'Ext.plugin.ListPaging',
                autoPaging: true,
                noMoreRecordsText: 'No More Records'

            }
        ]
    },
    initialize: function () {
        this.callParent(arguments);
        var store = Ext.create('Ext.data.Store', {

            pageParam: 'page',
            grouper: {
                groupFn: function (record) {
                    return record.data.group_label;
                }
            },
            model:   'ListItem',
            proxy:   {
                type:   'ajax',
                url:    '/m/services/activity_list_items.php',
                reader: {
                    type:         'json',
                    rootProperty: 'root.results'
                }
            }
        });

        var template = Ext.create('GenericListItem', {
            hascounts: true,
            hasicon:   true,
            varmap:    {
                descr:  'subtext',
                count:  'sub_item_cnt',
                itemid: 'itemid',
                uniqid: 'uniqid'
            }
        });

        var emptyText = 'Recent Activity Items';
        this.setStore(store);
        this.setItemTpl(template);
        this.setEmptyText(emptyText);
    }
});

如何避免列表的自动排序?

4

2 回答 2

7

将以下内容添加到您的商店配置中。

remoteSort : true,

在 sencha 中 remoteSort 默认为 false。所以sencha在客户端自动排序。检查链接以获取更多详细信息http://docs.sencha.com/touch/2-0/#!/api/Ext.data.Store-cfg-remoteSort

于 2012-11-06T13:01:19.067 回答
2

只需删除这个:

grouped: true

如果您不想要每个项目的标题并强制删除它,请从您的列表配置中:

grouper: {
    groupFn: function (record) {
        return record.data.group_label;
    }
}

来自您的商店,因为基本上在您的情况下,grouper属性用于根据您的group_label字段按字母顺序对您的项目进行分组。希望能帮助到你 :)

于 2012-11-05T16:02:25.963 回答