[Laszlo-checkins] r10103 - openlaszlo/trunk/examples/components
max@openlaszlo.org
max at openlaszlo.org
Fri Jun 27 18:48:34 PDT 2008
Author: max
Date: 2008-06-27 18:48:28 -0700 (Fri, 27 Jun 2008)
New Revision: 10103
Modified:
openlaszlo/trunk/examples/components/list_example.lzx
Log:
Change 20080627-maxcarlson-W by maxcarlson at Roboto on 2008-06-27 18:10:08 PDT
in /Users/maxcarlson/openlaszlo/trunk-clean
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Fix wrapping of items in list example
Bugs Fixed: LPP-6542 - swf and dhtml: Components: Form Components: List: Get value text clipped when all items are selected in multi-select list
Technical Reviewer: promanik
QA Reviewer: jcrowley
Details: Add spaces to the string so it can wrap, and demystify the array.toString() magic.
Tests: See LPP-6542
Modified: openlaszlo/trunk/examples/components/list_example.lzx
===================================================================
--- openlaszlo/trunk/examples/components/list_example.lzx 2008-06-28 01:11:57 UTC (rev 10102)
+++ openlaszlo/trunk/examples/components/list_example.lzx 2008-06-28 01:48:28 UTC (rev 10103)
@@ -53,7 +53,7 @@
</button>
<button height="20">Get Value
<handler name="onclick">
- var val = a3.getValue();
+ var val = a3.getValue().join(', ');
a1val.setText(val);
</handler>
</button>
More information about the Laszlo-checkins
mailing list