diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/Javascripts/source/prado/controls/controls.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ BUG: Issue #592 - Fix TActiveMultiView brokwn on 3.3.1 (ctrlaltca) BUG: Issue #588 - Fix reading values of controls inside TJuiDialog (ctrlaltca) BUG: Issue #597 - TDatePicker::getDateFromPostData selected month issue (Sachat) BUG: Issue #599 - Allowing translation message cache to be initialized (emkael) +BUG: Issue #604 - TActiveImageButton inside TJuiDialog javascript problem (ctrlaltca) ENH: Issue #591 - Support for hyphenated attributes via <prop:*></prop:*> template syntax (emkael) ENH: Issue #594 - Added ability to check for subcontrols using isset(), empty() (jojoinside) ENH: Allow TStyle behaviors (LCSKJ) diff --git a/framework/Web/Javascripts/source/prado/controls/controls.js b/framework/Web/Javascripts/source/prado/controls/controls.js index 9eff6a1d..022dddcb 100644 --- a/framework/Web/Javascripts/source/prado/controls/controls.js +++ b/framework/Web/Javascripts/source/prado/controls/controls.js @@ -316,7 +316,7 @@ Prado.WebUI.TImageButton = jQuery.klass(Prado.WebUI.PostBackControl, y = y < 0 ? 0 : y; var id = this.element.id; var name = options['EventTarget']; - var form = this.element.form; + var form = this.element.form || jQuery('#PRADO_PAGESTATE').get(0).form; var input=null; input = document.createElement("input"); |