2

リモート経由でサーバーからデータを取得するストアを含むコンボ ボックスがあります。私の問題は、ページネーションが機能しないことです。ここに私のコードのスニペットがあります:

  Ext.define('EmployeeModel', {
     extend: 'Ext.data.Model',
     fields: [
        {name:'id', type:'int'},
        {name:'fullname', type:'string'}
     ]
  });

  // remote store
  var employeeStore= new Ext.data.Store(
  {
     model: 'EmployeeModel',
     pageSize: 10, 
     proxy: {
        url: '/schedule/home/EmployeeList',
        params: {
           'active_id': params
        },
        type: 'ajax',
        autoLoad: true,
        reader: 
        {
           root: 'data',
           totalProperty: 'total',
           id: 'id',
           type: 'json'
        },
        simpleSortMode: true 
     }
  });



  this.employeeBox = new Ext.form.ComboBox(
  {
     store: employeeStore,
     displayField: 'fullname',
     valueField: 'id',
     typeAhead: false,
     loadingText: 'Searching...',
     triggerAction: 'all',
     hiddenName: 'employee',
     name: 'Employee Name',
     fieldLabel: 'Employee',
     selectOnFocus: true,
     allowBlank: false,
     anchor: '98%',
     width: 370,
     enableKeyEvents: true,
     pageSize: true,
     minListWidth: 220,
     minChars: 2,
     labelWidth: this.labelWidth,
     resizable: false 
  });

何が欠けているのかわかりませんが、インターネットで検索した限り、すべてをコピーしてテストしましたが、それでも機能しません。

4

1 に答える 1

1

リモート ストアがある場合は、ページングもリモートにする必要があります。pageSizeページングを処理する必要があるサーバーに送信される唯一のパラメーターです。横にや などのpageSizeパラメータも表示されます。startlimit

ここで例を見ることができます : http://docs.sencha.com/ext-js/4-1/#!/example/form/forum-search.htmlこれ:http://www.sencha.com/forum/topics-remote.php?_dc=1354611968514&query=form&page=2&start=10&limit=10&callback=Ext.data.JsonP.callback3

クライアント側でページングが必要な場合は、ローカル ストアを作成し、カスタム AJAX 要求を介してデータをプリロードできます。

于 2012-12-04T09:08:26.187 に答える