0

我正在寻找解决 extjs 网格面板问题的技巧。我面临的情况如下:

我有一个由许多列组成的网格面板,这样的网格由日期存储填充。下面我报告网格的数据存储及其相关的数据模型:

Ext.define('branch', {
    extend: 'Ext.data.Model',
    fields: [{
        type: 'int',
        name: 'id'
    }, {
        type: 'int',
        name: 'customer_id'
    }, {
        type: 'int',
        name: 'city_id'
    }, {
        type: 'string',
        name: 'address'
    }, {
        type: 'string',
        name: 'phone'
    }, {
        type: 'string',
        name: 'fax'
    }, {
        type: 'string',
        name: 'email'
    }]
});

var branch_store = Ext.create('Ext.data.Store', {
    autoDestroy: true,
    model: 'branch',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: 'controller/loader.php?item=branch',
        reader: {
            type: 'json',
            successProperty: 'success',
            root: 'data'
        }
    }
});

这是网格面板的定义及其列列表:

rowHeight: 0.15,
xtype: 'gridpanel',
id: 'branch_grid',
store: branch_store,
height: 400,
title:'Branch list',
columns: [{
    text   : 'id',
width    : 30,
sortable : true,
dataIndex: 'id'
},{
    text   : 'Company',
width  :   200,
sortable : true,
dataIndex: 'customer_id',
renderer: get_company
},{
    text   : 'City',
width    : 100,
sortable : true,
dataIndex: 'city_id'
//renderer: city_from_id
},{
    text   : 'Address',
width    : 100,
sortable : true,
dataIndex: 'address'
},{
text   : 'Phone',
width    : 100,
sortable : true,
dataIndex: 'phone'
},{
text   : 'Fax',
width    : 100,
sortable : true,
dataIndex: 'fax'
},{
text   : 'Email',
width    : 100,
sortable : true,
dataIndex: 'email'
}

好吧,如果我没有为“公司”列使用渲染器,extjs 将显示一个包含整数的列,该整数是客户的 ID。我不喜欢这样,所以我编写了一个名为 get_company 的简单渲染器,它通过知道客户 ID 来获取客户名称。为此,它会扫描客户的数据存储以查找具有传递 id 的记录,当它找到该记录时,它会返回包含客户姓名的名为“公司”的记录字段。这是渲染器的代码:

function get_company(val) {
    if(customer_store.count()>0) {
    console.log('Val: '+ val + ', Stuff: ' + customer_store.count());
    company = ' ' + customer_store.getById(val).get('company');
    console.log(typeof company);
    return company;
}
else{
    console.log('customer store is empty');
    return 'test name';
}
}

最后是 customer_store 及其相关数据模型的代码:

Ext.define('customer', {
    extend: 'Ext.data.Model',
    fields: [{
        type: 'int',
        name: 'id'
    }, {
        type: 'string',
        name: 'company'
    }, {
        type: 'string',
        name: 'vat'
    }, {
        type: 'string',
        name: 'ssn'
    }, {
        type: 'int',
        name: 'ref_id'
    }]
});

var customer_store = Ext.create('Ext.data.Store', {
    autoDestroy: true,
    model: 'customer',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: 'controller/loader.php?item=customer',
        reader: {
            type: 'json',
            successProperty: 'success',
            root: 'data'
        }
    }
});

好吧,每次我测试这段代码时,我都会获得一个网格面板,其中公司列的每一行都包含“测试名称”,我相信这个问题的原因是渲染器函数在 customer_store 完全加载之前起作用。有谁知道如何解决这个问题?

4

1 回答 1

2

解决问题的唯一方法是确保customer_store将在branch_store.

所以,不要branch_store自动加载。而是捕获afterrender网格面板的事件,像这样加载存储customer_store

customer_store.on('load', function() {
   branch_store.load();
}, this, { single: true });
customer_store.load();
于 2012-06-18T10:32:43.970 回答