[Laszlo-checkins] r13609 - openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9
bargull@openlaszlo.org
bargull at openlaszlo.org
Sun Apr 5 15:58:51 PDT 2009
Author: bargull
Date: 2009-04-05 15:58:48 -0700 (Sun, 05 Apr 2009)
New Revision: 13609
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LzInputTextSprite.as
Log:
Change 20090406-bargull-ybS by bargull at dell--p4--2-53 on 2009-04-06 00:42:09
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: inputtext shouldn't be in html-mode by default
New Features:
Bugs Fixed: LPP-8026 (SWF9: edittext/inputtext is in html-mode)
Technical Reviewer: max
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
Set html-flag to false for compatibility with swf8 and dhtml.
Tests:
testcase from bugreport
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LzInputTextSprite.as
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LzInputTextSprite.as 2009-04-05 22:48:47 UTC (rev 13608)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/kernel/swf9/LzInputTextSprite.as 2009-04-05 22:58:48 UTC (rev 13609)
@@ -35,7 +35,9 @@
override public function __initTextProperties (args:Object) :void {
super.__initTextProperties(args);
- // We do not support html in input fields.
+ // We do not support html in input fields.
+ this.html = false;
+
if (this.enabled) {
textfield.type = TextFieldType.INPUT;
} else {
More information about the Laszlo-checkins
mailing list