sort out some whitespace
This commit is contained in:
parent
790a10e317
commit
1edafe2b6c
|
@ -752,32 +752,31 @@ Ext.reg('fullprogressbar', Ext.ux.FullProgressBar);
|
|||
Ext.override(Ext.form.RadioGroup, {
|
||||
|
||||
afterRender: function() {
|
||||
var that = this;
|
||||
this.items.each(function(i) {
|
||||
that.relayEvents(i, ['check']);
|
||||
});
|
||||
|
||||
Ext.form.RadioGroup.superclass.afterRender.call(this)
|
||||
},
|
||||
|
||||
getName: function() {
|
||||
return this.items.first().getName();
|
||||
},
|
||||
var that = this;
|
||||
this.items.each(function(i) {
|
||||
that.relayEvents(i, ['check']);
|
||||
});
|
||||
Ext.form.RadioGroup.superclass.afterRender.call(this)
|
||||
},
|
||||
|
||||
getValue: function() {
|
||||
getName: function() {
|
||||
return this.items.first().getName();
|
||||
},
|
||||
|
||||
getValue: function() {
|
||||
var v;
|
||||
|
||||
this.items.each(function(item) {
|
||||
v = item.getRawValue();
|
||||
return !item.getValue();
|
||||
v = item.getRawValue();
|
||||
return !item.getValue();
|
||||
});
|
||||
|
||||
return v;
|
||||
},
|
||||
},
|
||||
|
||||
setValue: function(v) {
|
||||
this.items.each(function(item) {
|
||||
item.setValue((item.getRawValue() === 'true') == v);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue