extjs 中radiogroup取值,怎么取啊
展开全部
重写下getValue方法
//RadioGroup重写的getValue和setValue
Ext.override(Ext.form.RadioGroup, {
getValue: function(){
var v;
if (this.rendered) {
this.items.each(function(item){
if (!item.getValue())
return true;
v = item.getRawValue();
return false;
});
}
else {
for (var k in this.items) {
if (this.items[k].checked) {
v = this.items[k].inputValue;
break;
}
}
}
return v;
},
setValue: function(v){
if (this.rendered)
this.items.each(function(item){
item.setValue(item.getRawValue() == v);
});
else {
for (var k in this.items) {
this.items[k].checked = this.items[k].inputValue == v;
}
}
}
});
使用:
var radiogroup= new Ext.form.RadioGroup({
fieldLabel : "是否是系统管理员",
width : 60,
items : [{
boxLabel : '是',
inputValue : 'true',
name : "sysAdmin"
}, {
boxLabel : '否',
name : "sysAdmin",
checked : true,
inputValue : 'false'
}]
});
radiogroup.getValue();//取值
//RadioGroup重写的getValue和setValue
Ext.override(Ext.form.RadioGroup, {
getValue: function(){
var v;
if (this.rendered) {
this.items.each(function(item){
if (!item.getValue())
return true;
v = item.getRawValue();
return false;
});
}
else {
for (var k in this.items) {
if (this.items[k].checked) {
v = this.items[k].inputValue;
break;
}
}
}
return v;
},
setValue: function(v){
if (this.rendered)
this.items.each(function(item){
item.setValue(item.getRawValue() == v);
});
else {
for (var k in this.items) {
this.items[k].checked = this.items[k].inputValue == v;
}
}
}
});
使用:
var radiogroup= new Ext.form.RadioGroup({
fieldLabel : "是否是系统管理员",
width : 60,
items : [{
boxLabel : '是',
inputValue : 'true',
name : "sysAdmin"
}, {
boxLabel : '否',
name : "sysAdmin",
checked : true,
inputValue : 'false'
}]
});
radiogroup.getValue();//取值
展开全部
radioGroup有id就 Ext.getCmp('id').getValue(); 取得就是group里面选中的radio的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不要再说重写了,有个getGroupValue()方法可以直接取的。方法是
Ext.getCmp(id).getValue().getGroupValue();
id是选框的id.害我找半天!
Ext.getCmp(id).getValue().getGroupValue();
id是选框的id.害我找半天!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询