{
xtype : 'radiogroup',
allowBlank : false,
width : 100,
labelSeparator : Color.blank,
items : [{
boxLabel : '是',
name : 'check',
inputValue : true,
listeners : {
'check' : function(checkbox, checked){
if(checked){//只有在点击时触发
} }
//监听事件
}
}
}, {
boxLabel : '否',
name : 'check',
inputValue : false,
checked : true,
listeners : {
'check' : function(){
//监听事件
}
}
}],
fieldLabel : '是否修改名称'
}
xtype : 'radiogroup',
allowBlank : false,
width : 100,
labelSeparator : Color.blank,
items : [{
boxLabel : '是',
name : 'check',
inputValue : true,
listeners : {
'check' : function(checkbox, checked){
if(checked){//只有在点击时触发
} }
//监听事件
}
}
}, {
boxLabel : '否',
name : 'check',
inputValue : false,
checked : true,
listeners : {
'check' : function(){
//监听事件
}
}
}],
fieldLabel : '是否修改名称'
}