-1

我在 Extjs 中的代码类似于

{
    xtype: 'numbercolumn',
    header: 'Model1',
    sortable: false,
    resizable: false,
    format: '0,000.00',
    align: 'right',
    width: 80,
    dataIndex: 'description',
    id: 'description'                         
}

这里的标题是静态的。我想更改标题文本也喜欢dataIndex字段。我该怎么做?

4

2 回答 2

0

reconfigure方法:http ://docs.sencha.com/ext-js/4-0/#!/api/Ext.panel.Table-method-reconfigure

于 2012-07-06T14:02:18.913 回答
0

是的,你可以做到这一点。

最初将标题文本设置为空白或您想要的。

并在gridstore.load事件中获取列名并设置文本。

例如,

linelistunitstore.on('load',function(store)
{
    Ext.getCmp('usertype').setText(store.getAt('0').get('operationconditiontempunit'));    
});
于 2012-09-12T07:46:43.437 回答