2014-10-31 68 views
3

我想將Ext.button.Split添加到面板的標題而不是標題。它必須像面板內容的切換器和同一面板的標題一起。 extjs 4中有任何選項可以做到這一點嗎?還是有更好的解決方案,而不是拆分按鈕?不幸的是,面板標題中的切換器是關鍵要求,因此它必須放置在那裏。extjs 4 - 如何將項目添加到面板標題?

回答

8

下面爲我工作ExtJS的4.2.2

{ 
      xtype: 'panel', 
      ...... 

      header: { 
       titlePosition: 0, 
       items: [ 
        { 
         xtype: 'splitbutton', 

        } 
       ] 
      } 
} 
4

頁眉的對象添加到您的面板與你的工具和添加項目的按鈕。

Ext.create('Ext.panel.Panel', { 
    width: 300, 
    height: 200, 
    renderTo: Ext.getBody(), 
    header: { 
     // if you want your button positioned on the right hand side add 
     // titlePosition: 0, 
     items: [{ 
      xtype: 'splitbutton', 
      text: 'test' 
     }] 
    } 
}); 
+0

哎呀..李偉光有點快:/ – 2014-10-31 16:44:27

+0

可能是因爲我比你:) – 2014-10-31 17:33:31

+0

感謝類型少了很多,它解決了我的問題,以及 – ddd 2014-10-31 19:31:27

相關問題