我有以下分組報頭格:EXTJS 4分組的列標題的動態文本修改
var lestore = Ext.create('Ext.data.Store', {
proxy: {
type: 'memory'
},
autoDestroy: true,
data:objstore
});
thegrid = Ext.create('Ext.grid.Panel', {
store: lestore,
columnLines: true,
columns: [{text:'date'},{text:'TV',columns:{text:'400',columns:[{text:'tt1'},{text:'tt2'}]}] ,
title:'my title' ,
selModel: {
selType: 'cellmodel'
},
renderTo: 'gridmpoff',
plugins: [Ext.create('Ext.grid.plugin.CellEditing', {clicksToEdit: 1}
)
],
listeners: {'edit': function(editor,e) {updtitle(editor,e);}
},
viewConfig: {
stripeRows: true
},
});
我所需要的網格創建之後改變列文本(TT1,TT2等),在不改變報頭分組。
我試着修改列屬性,但這並沒有幫助,只有那些迄今爲止工作的東西是重新配置與編輯器混淆。
請指點
setText在分組標題中不存在(這很有意義,因爲標題有很多級別,而且不能設置「列」文本) – Gar