是否可以将具有3列表格布局的面板垂直添加到第一列中,直到该列已满,然后继续添加第二列顶部的按钮等? TIA。
答案 0 :(得分:0)
它有点hacky但你可以使用RadioGroup并在其中加入一些按钮:
Ext.create('Ext.form.Panel', {
title: 'RadioGroup Example',
width: 200,
height: 200,
bodyPadding: 10,
renderTo: Ext.getBody(),
items:[{
xtype: 'radiogroup',
columns: 2,
vertical: true,
items: [
{ xtype: 'button', text: 'Item 1' },
{ xtype: 'button', text: 'Item 2' },
{ xtype: 'button', text: 'Item 3' },
{ xtype: 'button', text: 'Item 4' },
{ xtype: 'button', text: 'Item 5' },
]
}]
});