日期:2014-05-16 浏览次数:20426 次
var radioPanel = Ext.create("Ext.panel.Panel", {
id : "radioPanel",
title : "单选框Panel",
flex : 1,
renderTo : "orderInfoPage",
items : [ {
xtype : "radiogroup",
id : "dd_s",
fieldLabel : "属性dd",
name : "dd_s",
items : [ {
boxLabel : "Item 1",
name : "dd_s",
inputValue : 1,
listeners : {
"check" : function(el, checked) {
alert(1);
if (checked) {//只有在点击时触发
alert(2);
}
}
}
}, {
boxLabel : "Item 2",
name : "dd_s",
inputValue : 2,
checked : true
}, {
boxLabel : "Item 3",
name : "dd_s",
inputValue : 3
} ]
}]
});