0

dojox.data.QueryReadStore と一緒に dojox.grid.DataGrid を使用しています。クライアント側に次のコードがあります。

var store = new dojox.data.QueryReadStore({url:"<?php echo $this->url(array("action"=>"load-plans")) ?>"});
    //var store = new dojo.data.ItemFileWriteStore({url:"<?php echo $this->url(array("action"=>"load-plans")) ?>"});
    /*set up layout*/
    var layout = [[
            {name: 'Plan Name', field: 'title', width: '100px'},
            {name: 'User', field: 'email', width: '150px',get: formatEmail},
            {name: 'Status', field: 'percentage_completed', width: '100px'},
            {name: 'Word Count', field: 'word_count', width: '50px'},
            {name: 'Revenue Entries', field: 'revenue_count', width: '50px'},
            {name: 'Expense Entries', field: 'expense_count', width: '50px'},
            {name: 'Fund Entries', field: 'funds_count', width: '60px'},
            {name: 'Total Profit', field: 'total_profit', width: '60px'},
            {name: 'Total Funding', field: 'total_funding', width: '60px'},
            {name: 'Template Used', field: 'template_title', width: '100px'},
            {name: 'Last modified', field: 'updated_at', width: '100px'},

    ]];

    /*create a new grid:*/
    grid = new dojox.grid.DataGrid({
        id: 'plan-grid',
        store: store,
        structure: layout,
        escapeHTMLInData: false
        },

サーバー側: $data = $availableMerchants->getList($sort, $order, $start, $limit)->toArray();

    $dojoData = new Zend_Dojo_Data('id', $data, 'id');
    $this->getResponse()->setHeader('Content-Range', "items $start-$limit/302");
    echo $dojoData->toJson();

しかし、仮想ページングをスクロールしても機能しません。start=0&count=25 で最初のリクエストのみを行い、それ以上のリクエストは行いません。

助けてください。

4

1 に答える 1

2

私の知る限り、QueryReadStore の場合、次のような応答が必要です。

{
   "items":[list of items],
   "identifier":"id",
   "numRows": <total no of rows>
}

したがって、応答ヘッダーに no of items を設定する必要はありません。JSON 応答は上記の形式である必要があります。

于 2012-12-28T07:04:38.727 に答える