Author: hqm
Date: 2007-06-15 17:38:31 -0700 (Fri, 15 Jun 2007)
New Revision: 5439
Modified:
openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LzInputText.lzs
Log:
Change 20070615-hqm-8 by [EMAIL PROTECTED] on 2007-06-15 20:31:37 EDT
in /cygdrive/c/users/hqm/openlaszlo/legals4
for http://svn.openlaszlo.org/openlaszlo/branches/legals
Summary: fix for setEnabled setter on input text
New Features:
Bugs Fixed: LPP-2932
Technical Reviewer: max (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
The setEnabled setter on LzInputText was not actually setting the enabled
attribute on the
instance.
Tests:
test case in bug report
Modified: openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LzInputText.lzs
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LzInputText.lzs
2007-06-16 00:06:21 UTC (rev 5438)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LzInputText.lzs
2007-06-16 00:38:31 UTC (rev 5439)
@@ -206,6 +206,7 @@
*/
function setEnabled (enabled){
this.setAttribute('focusable', enabled);
+ this.enabled = enabled;
this.sprite.setEnabled(enabled);
this.onenabled.sendEvent(enabled);
}
_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins