2013-06-28 99 views

回答

2

您可以使用ExtJS的tbar來實現組件網格標題:

tbar: [ 
    { xtype: 'button', text: 'Button 1' } 
] 

或:

dockedItems: [{ 
    xtype: 'toolbar', 
    dock: 'top', 
    items: [ 
     { xtype: 'button', text: 'Button 1' } 
    ] 
}] 

實施combobox,最好的方法是定義自定義組合框組件併爲其提供alias,那麼在您的網格tbar中只需說xtype: 'mygridcombo'

這裏是一個example

1

這對我的作品以及

{ 
    text  : 'Save Energy Mode', 
    dataIndex: 'fs', 
    items: [{ 
     xtype: 'combobox', 
     padding: 2, 
     flex: 1 
    }] 
    } 

或簡單地(如果您不需要標題文本)

 columns: { items: [{ xtype: 'combobox'}] } 
相關問題