[Laszlo-checkins] r14312 - in openlaszlo/branches/4.4: . WEB-INF/lps/lfc/views

ptw@openlaszlo.org ptw at openlaszlo.org
Sat Jul 11 04:08:47 PDT 2009


Author: ptw
Date: 2009-07-11 04:08:45 -0700 (Sat, 11 Jul 2009)
New Revision: 14312

Modified:
   openlaszlo/branches/4.4/
   openlaszlo/branches/4.4/WEB-INF/lps/lfc/views/LzInputText.lzs
Log:
Merged revisions 14308 via svnmerge from 
http://svn.openlaszlo.org/openlaszlo/trunk

.......
  r14308 | hqm | 2009-07-10 17:16:31 -0400 (Fri, 10 Jul 2009) | 31 lines
  
  Change 20090710-hqm-H by hqm at badtzmaru.home on 2009-07-10 00:06:33 EDT
      in /Users/hqm/openlaszlo/trunk6
      for http://svn.openlaszlo.org/openlaszlo/trunk
  
  Summary:  default 'resize' to false for input text
  
  New Features:
  
  Bugs Fixed: LPP-8310
  
  Technical Reviewer: max
  QA Reviewer: ptw
  Doc Reviewer: (pending)
  
  Documentation:
  
  Release Notes:
  
  Details:
  
  + The 'resize' property of LzInputText was defaulting to 'true', so that an <inputtext> 
  with no initial text value would resize to zero width when it was constructed. 
  
  
  + Added code to LzInputText.construct() to default resize to false. 
  
  Tests:
  
   Amazon search field can be typed into
.......



Property changes on: openlaszlo/branches/4.4
___________________________________________________________________
Name: svnmerge-integrated
   - /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14109,14116,14124,14127,14129,14146-14156,14159,14165,14167-14171,14173-14206,14210-14215,14217-14290
   + /openlaszlo/branches/4.1:1-10153 /openlaszlo/branches/4.2:1-12154,12181,13205,13778 /openlaszlo/branches/devildog:1-8432 /openlaszlo/branches/pagan-deities:1-7955,8825,10756-10920,10922-10928,10930-10935,11151,11207,11554,13476,13629 /openlaszlo/branches/paperpie:1-6504,6506-6574,6576-7135,7137-7235 /openlaszlo/branches/wafflecone:1-5746,5818-6068,6070-6205,6207-6213,6216-6265,6267-6368,6370-6431,6433-6450,6497,6509,6661,7097,7872 /openlaszlo/trunk:1-13938,13940-13945,13947-13952,13954-13968,13970,13972-13980,13982-13985,13987-14015,14017-14032,14034,14036-14069,14071-14109,14116,14124,14127,14129,14146-14156,14159,14165,14167-14171,14173-14206,14210-14215,14217-14290,14308

Modified: openlaszlo/branches/4.4/WEB-INF/lps/lfc/views/LzInputText.lzs
===================================================================
--- openlaszlo/branches/4.4/WEB-INF/lps/lfc/views/LzInputText.lzs	2009-07-11 10:38:07 UTC (rev 14311)
+++ openlaszlo/branches/4.4/WEB-INF/lps/lfc/views/LzInputText.lzs	2009-07-11 11:08:45 UTC (rev 14312)
@@ -104,6 +104,7 @@
   */
 override function construct ( parent , args ){
     this.password = ('password' in args) ? (!! args.password) : false;
+    this.resize = ('resize' in args) ? (!! args.resize) : false;
     this.focusable = true;
     super.construct(parent, args);
     this._onfocusDel = new LzDelegate( this , "_gotFocusEvent" , this,



More information about the Laszlo-checkins mailing list