2013-07-23 55 views

回答

1

我覺得 「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(); 
}); 
+0

沒有,這是我的按鈕ID之一。我無法找到關於如何禁用按鈕組 – Duleep

+0

中的單個按鈕的好文檔,那麼您可以提供您的buttongroup代碼嗎?所以只有我能幫上忙。 –

+0

添加到您的groupButton配置:**隱藏:false,**並再試一次。默認值也是錯誤的,但不粘貼您的代碼... – mfruizs2