我不知道該如何去做,buttonAlign: 'center'
也不是pack: 'center'
正在工作。小提琴:http://jsfiddle.net/3Ytp9/ExtJS - 按鈕組中的中心項目
0
A
回答
1
使用的ButtonGroup的layout屬性:
layout: {
type: 'vbox',
align: 'center'
}
0
嘗試:
Ext.onReady(function() {
var panel = Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
title: 'Button group',
border: true,
layout: {
align: 'middle',
pack: 'center',
type: 'hbox'
},
width: 500,
items: [{
xtype: 'buttongroup',
columns: 1,
items: [{
xtype: 'button',
text: 'Go'
}, {
xtype: 'button',
text: 'Reset'
}]
}]
});
});
具有由側面的按鈕側,取出columns:1
- 也注意到,在對的jsfiddle Ext JS的實現是可怕的,所以不要依靠它太多。
1
您是否考慮過在面板底部使用工具欄?
https://fiddle.sencha.com/#fiddle/1c0(不MVC模式)
您也可以使用這樣的事情:
dockedItems: [{
xtype: 'toolbar',
layout: {
pack: 'center'
},
defaultButtonUI: 'default', // get default look and feel
dock: 'bottom',
items: [{
xtype: 'button',
width: 200,
text: 'Download to Excel',
},{
xtype: 'button',
width: 200,
text: 'Another action',
}]
問候。
+0
嗯,任何方式居中他們沒有使用停靠的工具欄? –
相關問題
- 1. ExtJS中的中心對齊按鈕
- 2. ListView中的按鈕項目
- 3. 中心按鈕
- 4. 中心按鈕
- 5. 與按鈕項目數組
- 6. ExtJS中的瀏覽按鈕
- 7. 標題中的按鈕ExtJs
- 8. CSS中的中心按鈕
- 9. ExtJS的對齊按鈕中心集裝箱
- 10. iOS凸起中心選項卡按鈕
- 11. ExtJS的按鈕
- 12. 如何通過按鈕按下數組中的項目?
- 13. 按鈕中心CSS
- 14. 引導 - 列表組中的輸入組按鈕項目
- 15. 中心WordPress的按鈕
- 16. Android的中心按鈕
- 17. GridLayout中的中心項目
- 18. NSCollectionView中的中心項目
- 19. 自定義項目添加到單選按鈕,在ExtJS的
- 20. ExtJS組件上的Twitter按鈕
- 21. ExtJS的unpress按鈕
- 22. Extjs Cellediting按鈕
- 23. 項目控件中的互斥按鈕
- 24. JComboBox項目中的顯示按鈕
- 25. 帶項目模板中的按鈕的組合框
- 26. 與中心項目
- 27. CSS中心項目
- 28. 按鈕位於按鈕中心的對齊按鈕iOS
- 29. 定位列表組項目按鈕
- 30. 列表組項目中的可點擊按鈕或圖形
似乎並沒有工作:https://fiddle.sencha.com/#fiddle/1cf –