Changeset 2440
- Timestamp:
- 04/18/2008 12:39:20 PM
- Files:
-
- trunk/HISTORY (modified) (1 diff)
- trunk/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js (modified) (1 diff)
- trunk/tests/FunctionalTests/tickets/protected/pages/Ticket695.page (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/HISTORY
r2439 r2440 7 7 BUG: Ticket#671 - TActiveCustomValidator Callback Problem (Christophe) 8 8 BUG: Ticket#679 - TActiveLabel can't be shown from inside TRepeater. TActiveRadioButton cant be unchecked (Christophe) 9 BUG: Ticket#695 - ActiveTextBox filled in IE blocks other elements (Michael) 9 10 BUG: Ticket#707 - TPropertyAccess sets property twice on object when using setters (Qiang) 10 11 BUG: Ticket#719 - TAutoCompleter should not trigger Validation if CausesValidation=False (Christophe) trunk/framework/Web/Javascripts/source/prado/activecontrols/activecontrols3.js
r1920 r2440 86 86 var request = new Prado.CallbackRequest(options.EventTarget, options); 87 87 request.dispatch(); 88 Event.stop(event); 88 if (!Prototype.Browser.IE) 89 Event.stop(event); 89 90 } 90 91 }); trunk/tests/FunctionalTests/tickets/protected/pages/Ticket695.page
r2422 r2440 2 2 3 3 <com:TActiveTextBox ID="ATB" AutoPostBack="True" onTextChanged="onATB" /><br /> 4 <com:TActiveCheckBox ID="ACB" AutoPostBack="True" /><br /> 4 5 <com:TTextBox ID="TB"/><br /> 5 6 Callbacks: <com:TActiveLabel ID="X" Text="0"/>
