0

extjs4 と ac# バックエンドで無限スクロール グリッドを取得したい...コントローラーでプロキシ API を設定しています..

私のモデル:

Ext.define('appname.model.training.course.TrainingRequirementList', {
    extend: 'Ext.data.Model',
    idProperty: 'ID',
    fields: [
        { name: 'ID', type: 'int', convert: null },
        { name: 'EmployeeName', type: 'string' },
        { name: 'Description', type: 'string' },
        { name: 'StatusText', type: 'string' },
        { name: 'Status', type: 'int' },
        { name: 'Priority', type: 'string' },
        { name: 'Date', type: 'string' },
        { name: 'Cost', type: 'string' },
        { name: 'CanApprove', type: 'bool' },
        { name: 'CanRequest', type: 'bool' },
        { name: 'ConfirmStatus', type: 'string' },
        { name: 'PlanId', type: 'int'}
    ]

});

マイグリッド:

{
    xtype: 'gridpanel',
    flex: 1,
    padding: '0 10 10 10',
    minHeight: 200,
    verticalScroller: {
        xtype: 'paginggridscroller'
    },
    store: {
        model: 'appname.model.training.course.TrainingRequirementList',
        pageSize: 200,
        autoLoad: true,
        buffered: true,
        remoteSort: true,
        sorters: {
            property: 'Date',
            direction: 'DESC'
        },

        proxy: {
            type: 'direct',
            extraParams: {
                total: 50000
            },
            reader: {
                type: 'json',
                root: 'ID',
                totalProperty: 'TotalCount'
            },
            simpleSortMode: true
        }
    },
    columns:
        [{
            text: Lang.Main.Employeee,
            dataIndex: 'EmployeeName',
            flex: 1,
            filterable: true
        },
        {
            text: Lang.Main.Course,
            dataIndex: 'Description',
            flex: 1,
            filterable: true
        },
        {
            text: Lang.Main.Status,
            dataIndex: 'StatusText',
            flex: 1,
            filterable: true
        },
        {
            text: Lang.Main.Priority,
            dataIndex: 'Priority',
            flex: 1
        },
        {
            text: Lang.Main.Date,
            dataIndex: 'Date',
            flex: 1
        },
        {
            text: Lang.Main.Cost,
            dataIndex: 'Cost',
            flex: 1,
            filterable: true
        },
        {
            text: Lang.Main.Actions,
            flex: 1,
            align: 'center',
            xtype: 'actioncolumn',
            width: 50,
            items: [{
                icon: 'Design/icons/cog_edit.png',
                tooltip: Lang.Main.Open,
                handler: function (grid, rowIndex, colIndex, item) {
                    this.onGridOpen(grid.getStore().getAt(rowIndex));
                }
            }]
        }],      
    selModel: { mode: 'MULTI', selType: 'checkboxmodel' },
}

コントローラでプロキシを設定:

view.grid.getStore().setProxy({
            type: 'direct', 
            model: 'appname.model.training.course.TrainingRequirementList', 
            api: { read: SCT.Service.Training.Plan.GetFilteredRequirements }, 
            extraParams: { total: 50000 }, 
            reader: {
                type: 'json',
                root: 'ID',
                totalProperty: 'TotalCount'
            },
            simpleSortMode: true
        });

私の見解に関する追加情報:

Ext.define('appname.view.training.course.TrainingRequirements',
    {
        extend: 'Ext.panel.Panel',
        require: [ 'Ext.grid.PagingScroller'],

私のグリッドは最初の 200 行しかロードしておらず、スクロールバーは 200 行分の大きさしかありません.. :/ ...

次のようなエントリを含むサーバーの応答:

{"ID":99,"PlanId":23,"firstname":"name","lastname":"name","Comment":"","Status":3,"ConfirmType":0,"Priority":"entry","DesiredDate":null,"StartDate":new Date(1354107600000),"ActualCost":180,"EstimatedCost":0,"row":201,"TotalCount":8568,"EmployeeName":"some, name","Description":"","StatusText":"state","Date":"28.11.2012","Cost":"EUR 180"}

私は何が欠けていますか???

アップデート

下にスクロールすると、スクリプトは2番目のページもロードしています..まだ何もありません...

さらに情報が必要な場合は、お気軽にお問い合わせください

4

1 に答える 1

1

TotalCountサーバーは応答に正しい値を含めていますか?

編集:

リーダーの構成に従って、サーバーはこのようにフォーマットされたデータで応答する必要があります (もちろん、応答も有効な JSON である必要があります。ここでは説明のために Javascript を使用しています)。

{
    // total property at the root level of response object
    TotalCount: 8568,

    // root for items data, configured as "ID" in your reader (you should probably
    // change that to something like "records" or "data" to better express meaning)
    ID: [
        // individual fields data
        {ID: 1, EmployeeName: 'Foo', ...},
        {ID: 2, EmployeeName: 'Bar', ...},
        ...
    ]

    // if you had, for example, a successProperty, it would go here too
    ,success: true
}

あなたの場合、TotalCountすべての項目データにあなたが混在しているように見えますか?

サーバー側での実装については正しいです。それは単純にレコードの総数である必要があるためCOUNT(*)、データベースのようなものです。

もう 1 つ:new Date(1354107600000)は有効な JSON ではありません。JSON がデコードされたら、文字列を使用して日付にキャストする必要があります。たとえば、あなたのモデルでは、Ext があなたの: に対してこれを処理するようにフィールド タイプを設定できます{name: 'Date', type: 'date', format: 'd.m.Y'}

于 2013-06-05T09:40:53.163 に答える