fix a bug in setValue for the RadioGroup

This commit is contained in:
Damien Churchill 2009-07-29 08:22:19 +00:00
parent 82a4367aa9
commit a62c545d4a
1 changed files with 1 additions and 1 deletions

View File

@ -777,7 +777,7 @@ Ext.override(Ext.form.RadioGroup, {
setValue: function(v) {
if (!this.items.each) return;
this.items.each(function(item) {
item.setValue((item.getRawValue() === 'true') == v);
item.setValue((item.originalValue == v));
});
}
});