2014-07-23 54 views

回答

0

這是用於根據需要加載更多記錄的代碼。它只適用於LIST只記得。

Secnha載入更多插件Ext.plugin.ListPagingView

注:在 '商店' 你需要申請配置>> pageSize的

每頁:30,//任何達姆數

{ 
      xtype: 'panel', 
      flex: 1, 
      layout: 'fit', 
      items: [ 
       { 
        xtype:'list', 
        itemId:'asd', 
        disableSelection:true,             
        id:'asd', 
        itemTpl:new Ext.XTemplate(
         '<div class="maindiv">'+         
          '</div>' 
        ), 
        store:'xyz', 
        plugins: [ 
         { 
          xclass: 'Ext.plugin.ListPaging', 
          noMoreRecordsText:'No More Products', 
          loadMoreText:'Load More', 
          autoPaging: true 
         } 
        ], 
        itemHeight:60 
       } 
      ] 
     }