2

我有一个无限网格,默认情况下效果很好,它可以很好地通过结果获取页面。

但是,当我单击列标题以在其中一列上定义排序顺序时,即使我发送回与排序前完全相同的数据,网格也会挂起“正在加载”消息(我是目前忽略服务器端的“排序”变量只是为了测试目的。)

由于这是针对开源项目的,因此可以提供您可能需要帮助的任何其他资源。

任何帮助将不胜感激。先感谢您。

亲切的问候,约翰。

我在服务器上收到此请求:

"GET /lextjsapi/reader/tblname?_dc=1361204535173&page=1&start=0&limit=10&sort=%5B%7B%22property%22%3A%22id%22%2C%22direction%22%3A%22DESC%22%7D%5D HTTP/1.1" 200 832 "http://lextjs/sa-test/app.html"

这是 PHP 服务器端代码:

echo json_encode(array('success' => true, 'total' => 1000, $model_name => $tblNameRows));

这是商店的代码:

Ext.define('MyApp.store.tblnameStore', {
extend: 'Ext.data.Store',

requires: [
    'MyApp.model.tblname'
],

constructor: function(cfg) {
    var me = this;
    cfg = cfg || {};
    me.callParent([Ext.apply({
        autoLoad: true,
        remoteSort: true,
        storeId: 'tblnameStore',
        model: 'MyApp.model.tblname',
        buffered: true,
        leadingBufferZone: 10,
        pageSize: 10,
        purgePageCount: 0,
        trailingBufferZone: 10,
        proxy: {
            type: 'ajax',
            url: 'http://lextjs/lextjsapi/reader/tblname',
            reader: {
                type: 'json',
                root: 'tblname'
            }
        }
    }, cfg)]);
} });

这是网格的代码:

Ext.define('MyApp.view.MyGridPanel2', {
extend: 'Ext.grid.Panel',

height: 250,
width: 450,
title: 'My Grid Panel',
store: 'tblnameStore',

initComponent: function() {
    var me = this;

    Ext.applyIf(me, {
        viewConfig: {

        },
        columns: [
            {
                xtype: 'gridcolumn',
                dataIndex: 'id',
                text: 'Id'
            },
            {
                xtype: 'gridcolumn',
                sortable: false,
                dataIndex: 'name',
                text: 'Name'
            },
            {
                xtype: 'gridcolumn',
                sortable: false,
                dataIndex: 'address1',
                text: 'Address1'
            },
            {
                xtype: 'gridcolumn',
                sortable: false,
                dataIndex: 'city',
                text: 'City'
            }
        ]
    });

    me.callParent(arguments);
} });
4

0 回答 0