如何在EXT JS 5.0.1中将xtype:button放置在面板的右侧?

问题描述 投票:0回答:1

{xtype:'panel',布局:“表单”,columnWidth:0.3,项目:[{xtype:'按钮',文字:“删除”,cls:“ flat-btn”}]}

extjs extjs5
1个回答
0
投票
{ xtype: 'panel', layout: { type: 'hbox', align: 'stretch' }, items: [{ xtype: 'component', flex: 1 },{ xtype: 'button', ... }] }
© www.soinside.com 2019 - 2024. All rights reserved.