使用带有sencha touch 2的列表分页重新加载图像

时间:2013-12-23 11:24:32

标签: extjs4 sencha-touch

使用带有sencha touch 2的列表分页重新加载图像

朋友你好,

我有一个使用list分页插件的商店。

商品

Ext.define("Sencha.store.OfferStore", {
    extend: "Ext.data.Store",
    requires: [
        'Sencha.model.OfferModel'
    ],
    config: {
        autoLoad: true,
        model: 'Sencha.model.OfferModel',
        storeId: 'offerStore',
        clearOnPageLoad: false,
        noCache: false,
        proxy: {
            type: 'ajax',
            method: 'POST',
            noCache: false,
            url: 'URL',
            pageParam: 'PageNumber',
            reader: {
                type: 'json'                
            },
            actionMethods: {
                create: 'POST',
                read: 'POST',
                update: 'POST',
                destroy: 'DELETE'
            }
        }
    }

});

列表

var offerList = Ext.create('Ext.List', {
            scrollable: true,
            ui: 'round',
            onItemDisclosure: false,
            emptyText: emptyText,
            store: 'offerStore',
            itemTpl: offerTpl,
            itemId: 'offerListView',
            plugins: [
                {
                    xclass: 'Ext.plugin.ListPaging',
                    autoPaging: true,
                    loadMoreText: '',
                    noMoreRecordsText: 'No More Records'
                }
            ]
        });

问题

列表分页从url加载另一个数据,但是当它加载更多数据时,所有图像都会刷新并在使用list分页插件调用url时再次渲染。

抱歉我的英语不好。

由于

0 个答案:

没有答案