我已經能夠將工具放入窗口標題欄中,但希望能夠對Panel執行相同的操作。ExtJS:將工具放到標題欄上
這是我的嘗試:
panel = new Ext.Panel({
id: 'my_panel',
region: 'west',
title:'MyTitle',
iconCls:'helpIcon',
initComponent:function(){
var config = {
tools:[{
id: 'gear',
handler: function(){...}
}]
};
Ext.apply(this, config);
Ext.apply(this.initialConfig, config);
Ext.Panel.superclass.initComponent.apply(this, arguments);
}
}
一些建議,將不勝感激
JJ
是的,但..在這種情況下,一個子類絕對是過分的,並且看起來不是OP的意圖。只需將工具添加爲由其他人發佈的配置項目,並且不會損壞initComponent。 – 2011-03-26 03:56:19
感謝您的評論,這只是一段代碼的完整上下文的抽象,這是我正在尋找的,所以謝謝! – neolaser 2011-03-27 22:40:59