diff options
author | wei <> | 2006-12-10 23:55:49 +0000 |
---|---|---|
committer | wei <> | 2006-12-10 23:55:49 +0000 |
commit | 840854be7886236d46d3408de5a084983373b4c7 (patch) | |
tree | 8a8c22463bc3ac7f556633e790818d724bc52ed0 /framework/Web/Javascripts/js/debug/prado.js | |
parent | 3c03a42d1edb0ec26110ace00f42e156cabff67b (diff) |
Fixed #470
Diffstat (limited to 'framework/Web/Javascripts/js/debug/prado.js')
-rw-r--r-- | framework/Web/Javascripts/js/debug/prado.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/Javascripts/js/debug/prado.js b/framework/Web/Javascripts/js/debug/prado.js index 4ab0a415..61b7f880 100644 --- a/framework/Web/Javascripts/js/debug/prado.js +++ b/framework/Web/Javascripts/js/debug/prado.js @@ -3256,10 +3256,10 @@ Prado.WebUI.PostBackControl = Class.create(); Prado.WebUI.PostBackControl.prototype =
{
- _elementOnClick : null, //capture the element's onclick function
-
initialize : function(options)
{
+ this._elementOnClick = null, //capture the element's onclick function
+
this.element = $(options.ID);
if(this.onInit)
this.onInit(options);
|