[Laszlo-checkins] r8295 - in openlaszlo/trunk: examples/components lps/components/lz

hqm@openlaszlo.org hqm at openlaszlo.org
Mon Mar 17 11:00:15 PDT 2008


Author: hqm
Date: 2008-03-17 11:00:13 -0700 (Mon, 17 Mar 2008)
New Revision: 8295

Modified:
   openlaszlo/trunk/examples/components/index.html
   openlaszlo/trunk/lps/components/lz/datepicker.lzx
Log:
Change 20080317-hqm-H by hqm at badtzmaru.local on 2008-03-17 13:56:25 EDT
    in /Users/hqm/openlaszlo/trunk4
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix datepicker class references

New Features:

Bugs Fixed:

Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    
+ datepicker uses a "once" type attribute to hold pointers to the class used for
day and week components, so need to use a "lz." prefix for the attribute initial values.

+ add link to datepicker example from examples index page


Tests:

examples/components/datepicker_example.lzx



Modified: openlaszlo/trunk/examples/components/index.html
===================================================================
--- openlaszlo/trunk/examples/components/index.html	2008-03-17 17:59:12 UTC (rev 8294)
+++ openlaszlo/trunk/examples/components/index.html	2008-03-17 18:00:13 UTC (rev 8295)
@@ -109,13 +109,21 @@
 (<a href="../../lps/utils/viewer/viewer.jsp?file=/examples/components/window_example.lzx">source</a>,
  <a href= "window_example.lzx?lzt=filter&amp;filter=/LZViewer">LZViewer</a>)<br />
 </li>
+<li>
+<b>DatePicker:</b> <a href="datepicker_example.lzx?lzt=html">datepicker_example.lzx</a>
+(<a href="../../lps/utils/viewer/viewer.jsp?file=/examples/components/datepicker_example.lzx">source</a>,
+ <a href= "datepicker_example.lzx?lzt=filter&amp;filter=/LZViewer">LZViewer</a>)<br />
+</li>
 
+
+
+
 </ul>
 
 
 
 <!-- * H_LZ_COPYRIGHT_BEGIN *********************************************** -->
-<p class="copyright">Copyright &copy; 2002-2006 <a target="_top"
+<p class="copyright">Copyright &copy; 2002-2008 <a target="_top"
 href="http://www.laszlosystems.com/">Laszlo Systems, Inc.</a>
 All Rights Reserved. Unauthorized use, duplication or
 distribution is strictly prohibited. This is the proprietary

Modified: openlaszlo/trunk/lps/components/lz/datepicker.lzx
===================================================================
--- openlaszlo/trunk/lps/components/lz/datepicker.lzx	2008-03-17 17:59:12 UTC (rev 8294)
+++ openlaszlo/trunk/lps/components/lz/datepicker.lzx	2008-03-17 18:00:13 UTC (rev 8295)
@@ -202,9 +202,9 @@
         <!--- @keywords private -->
         <attribute name="firstDaySelected" type="boolean" value="false"/> 
         <!--- @keywords private -->
-        <attribute name="weekclass" value="datepickerweek"/> 
+        <attribute name="weekclass" value="lz.datepickerweek"/> 
         <!--- @keywords private --> 
-        <attribute name="dayclass" value="datepickerday"/> 
+        <attribute name="dayclass" value="lz.datepickerday"/> 
     <!--- @keywords public -->
     <attribute name="allowdrag" type="boolean" value="true"/>
 



More information about the Laszlo-checkins mailing list