From 60a4991e9bd37457cafc6f3a19fd83f8c71ef3b0 Mon Sep 17 00:00:00 2001 From: mikl <> Date: Fri, 18 Apr 2008 17:39:20 +0000 Subject: Fix #695 --- HISTORY | 1 + .../Web/Javascripts/source/prado/activecontrols/activecontrols3.js | 3 ++- tests/FunctionalTests/tickets/protected/pages/Ticket695.page | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 6343bc7b..25f5cf87 100644 --- a/HISTORY +++ b/HISTORY @@ -6,6 +6,7 @@ BUG: Ticket#636 - I18N catalogue problem (Christophe) BUG: Ticket#669 - Strange rendering behaviour with TActivePanel (Christophe) BUG: Ticket#671 - TActiveCustomValidator Callback Problem (Christophe) BUG: Ticket#679 - TActiveLabel can't be shown from inside TRepeater. TActiveRadioButton cant be unchecked (Christophe) +BUG: Ticket#695 - ActiveTextBox filled in IE blocks other elements (Michael) BUG: Ticket#707 - TPropertyAccess sets property twice on object when using setters (Qiang) BUG: Ticket#719 - TAutoCompleter should not trigger Validation if CausesValidation=False (Christophe) BUG: Ticket#721 - TActiveCustomValidator + TValidationSummary problem (Christophe) diff --git a/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js b/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js index 28bd3fa9..7ee4c0e6 100644 --- a/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js +++ b/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js @@ -85,7 +85,8 @@ Prado.WebUI.TActiveTextBox = Class.extend(Prado.WebUI.TTextBox, { var request = new Prado.CallbackRequest(options.EventTarget, options); request.dispatch(); - Event.stop(event); + if (!Prototype.Browser.IE) + Event.stop(event); } }); diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket695.page b/tests/FunctionalTests/tickets/protected/pages/Ticket695.page index 884be053..00add0af 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket695.page +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket695.page @@ -1,6 +1,7 @@
+

Callbacks: -- cgit v1.2.3