我已经在我的表单中添加了一个单选按钮组。根据启用的单选按钮,一个或两个文本字段应该出现在表单中,也就是说,如果启用了第一个单选按钮,那么只有一个文本字段应该出现,而如果启用了第二个单选按钮,两个文本字段应该水平出现。从下面的代码中,当启用第二个单选按钮时,两个文本字段彼此折叠。我如何将这些文本字段并排放置?
{
xtype: 'radiogroup',
fieldLabel: 'Type',
name: 'type',
items: [{
boxLabel: 'Single IP',
inputValue: '1',
checked: true,
},{
boxLabel: 'IP Range',
inputValue: '2'
}],
listeners: {
change: {
fn: rgChange
}},
},{
default:'textfield',
layout:'hbox',
items:[{
xtype: 'textfield',
id: 'iplabel',
fieldLabel:'IP',
},{
xtype: 'textfield',
id: 'fromlabel',
fieldLabel:'From',
hidden:true,
},{
xtype: 'textfield',
id: 'tolabel',
fieldLabel: 'To',
hidden:true,
}]
}
1条答案
按热度按时间mpgws1up1#
尝试下面的代码,也看看这个小提琴。