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 に答える