fix a bug in setValue for the RadioGroup
This commit is contained in:
parent
82a4367aa9
commit
a62c545d4a
|
@ -777,7 +777,7 @@ Ext.override(Ext.form.RadioGroup, {
|
||||||
setValue: function(v) {
|
setValue: function(v) {
|
||||||
if (!this.items.each) return;
|
if (!this.items.each) return;
|
||||||
this.items.each(function(item) {
|
this.items.each(function(item) {
|
||||||
item.setValue((item.getRawValue() === 'true') == v);
|
item.setValue((item.originalValue == v));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue