X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..92c2b89db26be16707f4a805d3303ab2531006e1:/docs/source/Radio.html
diff --git a/docs/source/Radio.html b/docs/source/Radio.html
index f551a2b2..7eed167b 100644
--- a/docs/source/Radio.html
+++ b/docs/source/Radio.html
@@ -1,5 +1,6 @@
+
The source code
@@ -62,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);
@@ -70,7 +71,7 @@ Ext.form.Radio = Ext.extend(Ext.form.Checkbox, {
}
return this;
},
-
+
// private
getCheckEl: function(){
if(this.inGroup){