X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6e39d509471fe9b4e2660e0d1631b350d0c66f40..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/source/Radio.html diff --git a/docs/source/Radio.html b/docs/source/Radio.html index 95858452..7eed167b 100644 --- a/docs/source/Radio.html +++ b/docs/source/Radio.html @@ -63,7 +63,7 @@ Ext.form.Radio = Ext.extend(Ext.form.Checkbox, { setValue : function(v){ if (typeof v == 'boolean') { Ext.form.Radio.superclass.setValue.call(this, v); - } else { + } else if (this.rendered) { var r = this.getCheckEl().child('input[name=' + this.el.dom.name + '][value=' + v + ']', true); if(r){ Ext.getCmp(r.id).setValue(true); @@ -71,7 +71,7 @@ Ext.form.Radio = Ext.extend(Ext.form.Checkbox, { } return this; }, - + // private getCheckEl: function(){ if(this.inGroup){