0
當我隱藏按鈕全部按鈕隱藏buttongroup時,我有buttongroup裏面的四個按鈕。這個bug是ExtJs3還是我做過的東西?爲什麼不能隱藏單個按鈕形成ExtJs3 buttongroup?
這是我用來隱藏按鈕
var theSameButton = Ext.getCmp('my_button_id');
theSameButton.hide();
當我隱藏按鈕全部按鈕隱藏buttongroup時,我有buttongroup裏面的四個按鈕。這個bug是ExtJs3還是我做過的東西?爲什麼不能隱藏單個按鈕形成ExtJs3 buttongroup?
這是我用來隱藏按鈕
var theSameButton = Ext.getCmp('my_button_id');
theSameButton.hide();
我覺得 「my_button_id」 是你的按鈕組ID。你可以發佈你的代碼嗎? 如果你只想要一個按鈕,請隱藏下面的代碼。
Ext.onReady(function(){
var Window = new Ext.Window(
{
width : 340,
height : 150,
iconCls : 'upload',
defaults : {
bodyStyle : 'padding:0px'
},
items : [{
xtype: 'buttongroup',
id:'buttonGrp',
items: [{
text: 'Paste',id:'button1',handler : function(){ Ext.getCmp('button2').hide();}
},{
text: 'Copy',id:'button2'
},{
text: 'Format',id:'button3'
}]
} ]
});
Window.show();
});
沒有,這是我的按鈕ID之一。我無法找到關於如何禁用按鈕組 – Duleep
中的單個按鈕的好文檔,那麼您可以提供您的buttongroup代碼嗎?所以只有我能幫上忙。 –
添加到您的groupButton配置:**隱藏:false,**並再試一次。默認值也是錯誤的,但不粘貼您的代碼... – mfruizs2