动态填充标题文本

时间:2012-07-06 13:49:24

标签: json extjs

我在Extjs中的代码类似于

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

这里的标题是静态的。我想更改标题文本,如dataIndex字段。我该怎么办?

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

是的,你可以这样做。

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

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

如,

linelistunitstore.on('load',function(store)
{
    Ext.getCmp('usertype').setText(store.getAt('0').get('operationconditiontempunit'));    
});