Name

simpleinputtext

Synopsis

LZX: simpleinputtext
JavaScript: simpleinputtext
Type: Class
Access: public
Topic: Components.Laszlo Components
Declared in: lps/components/lz/simpletext.lzx

Description

Note: Simpleinputtext is deprecated. Please use edittext instead.

Superclass Chain

node (LzNode) » view (LzView) » simpleinputtext

Known Subclasses

Details

Properties (6)

bgOpacity
<attribute name="bgOpacity" value="1" />
public var bgOpacity;
The opacity for the input background. Default is 1.
blurborderOpacity
<attribute name="blurborderOpacity" value="1" />
public var blurborderOpacity;
The opacity for the border on blur. Default is 1.
focusborderOpacity
<attribute name="focusborderOpacity" value="1" />
public var focusborderOpacity;
The opacity for the border on focus. Default is 1.
text
<attribute name="text" type="html" value="" />
public var text : html;
The text for input. Defaults to empty string.
textOpacity
<attribute name="textOpacity" value="1" />
public var textOpacity;
The text opacity. Default is 1.
width
<attribute name="width" value="100" />
public var width;
The width of the input box. Default is 100.

Methods (2)

getText()
<method name="getText" />
public function getText() : String;
Get the text.
setText()
<method name="setText" args="t" />
public function setText(t : String);
Set the text.

LZX Synopsis

<class name="simpleinputtext" extends=" LzView ">
  <attribute name=" bgOpacity " value="1" />
  <attribute name=" blurborderOpacity " value="1" />
  <attribute name=" focusborderOpacity " value="1" />
  <attribute name=" text " type="html" value="" />
  <attribute name=" textOpacity " value="1" />
  <attribute name=" width " value="100" />
  <method name=" getText " />
  <method name=" setText " args="t" />
</class>

JavaScript Synopsis

public deprecated simpleinputtext extends  LzView  {
  public var bgOpacity ;
  public var blurborderOpacity ;
  public var focusborderOpacity ;
  public var text  : html;
  public var textOpacity ;
  public var width ;
  prototype public function getText () : String;
  prototype public function setText (t : String);
}