我在Extjs中的代码类似于
{
xtype: 'numbercolumn',
header: 'Model1',
sortable: false,
resizable: false,
format: '0,000.00',
align: 'right',
width: 80,
dataIndex: 'description',
id: 'description'
}
这里的标题是静态的。我想更改标题文本,如dataIndex
字段。我该怎么办?
答案 0 :(得分:0)
答案 1 :(得分:0)
是的,你可以这样做。
最初将标题文字设置为空白或您想要的内容。
并在gridstore.load
事件中获取列名称并设置文本。
如,
linelistunitstore.on('load',function(store)
{
Ext.getCmp('usertype').setText(store.getAt('0').get('operationconditiontempunit'));
});