我有一个包含layout: {type:'vbox'}
字段容器的表单。
我需要在同一行放置两个字段,但radiogroup
未正确对齐。 (我已附上图片以便更好地理解)。
表单代码如下:
{
xtype: 'datefield',
fieldLabel: 'Date',
format: 'd/m/Y',
submitFormat: 'Y-m-d H:i:s',
allowBlank: false,
disabled: true,
value: new Date()
}, {
xtype: 'fieldcontainer',
fieldLabel: 'Type',
combineErrors: true,
defaults: {
hideLabel: true
},
layout: {
type: 'vbox'
},
items: [{
xtype: 'combobox',
width: 90,
store: Ext.create('HolidayType', {
autoLoad: true
}),
displayField: 'Description',
valueField: 'HolidayTypeId',
queryMode: 'local',
allowBlank: false,
}, {
xtype: 'radiogroup',
columns: 2,
items: [{
boxLabel: 'Official',
name: 'RequestInAdvance',
inputValue: 0,
checked: true
}, {
boxLabel: 'Personal',
name: 'RequestInAdvance',
inputValue: 1
}
]
}]
}, {
xtype: 'radiogroup',
fieldLabel: 'Request',
anchor: '70%',
columns: 2,
items: [{
boxLabel: 'Payable',
name: 'Request',
inputValue: 0,
checked: true
}, {
boxLabel: 'Non Payable',
name: 'Request',
inputValue: 1
}
]
},
关于如何获得欲望行为的任何线索?
更新
这是sencha小提琴:https://fiddle.sencha.com/#fiddle/8ch
答案 0 :(得分:0)
您需要为列或整个广播组指定宽度:
xtype: 'radiogroup',
width: 200,
columns: 2,
items: [
{ boxLabel: 'Official', name: 'Request1', inputValue: 0, checked: true },
{ boxLabel: 'Personal', name: 'Request1', inputValue: 1 }
]
答案 1 :(得分:0)
解决:
解决方案是为每个电台项目分配固定宽度或弹性:
这是小提琴:https://fiddle.sencha.com/#fiddle/8ci
items: [{
boxLabel: 'Official',
width: 80,
padding: '0 0 0 22',
name: 'Request1',
inputValue: 0,
checked: true
}, {
boxLabel: 'Personal',
flex: 1,
name: 'Request1',
inputValue: 1
}
]