diff options
author | wei <> | 2007-01-24 05:52:22 +0000 |
---|---|---|
committer | wei <> | 2007-01-24 05:52:22 +0000 |
commit | e306989c6d03aac37e2557465b4812ea21970065 (patch) | |
tree | 7e2524a33cedf49831eb3c5ae15cd1bed3c3ab2c /framework/Web/Javascripts/js/debug/prado.js | |
parent | dec4042d10caa5a54b753fab950f16218fa62d8d (diff) |
Fixed #517, #519, #521
Diffstat (limited to 'framework/Web/Javascripts/js/debug/prado.js')
-rw-r--r-- | framework/Web/Javascripts/js/debug/prado.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/framework/Web/Javascripts/js/debug/prado.js b/framework/Web/Javascripts/js/debug/prado.js index a1a224b9..08c7e428 100644 --- a/framework/Web/Javascripts/js/debug/prado.js +++ b/framework/Web/Javascripts/js/debug/prado.js @@ -3264,8 +3264,11 @@ Prado.WebUI.PostBackControl.prototype = this._elementOnClick = null, //capture the element's onclick function
this.element = $(options.ID);
- if(this.onInit)
- this.onInit(options);
+ if(this.element)
+ {
+ if(this.onInit)
+ this.onInit(options);
+ }
},
onInit : function(options)
@@ -3382,8 +3385,11 @@ Object.extend(Prado.WebUI.TRadioButton.prototype, initialize : function(options)
{
this.element = $(options['ID']);
- if(!this.element.checked)
- this.onRadioButtonInitialize(options);
+ if(this.element)
+ {
+ if(!this.element.checked)
+ this.onRadioButtonInitialize(options);
+ }
}
});
|