Name

basevaluecomponent — an abstract class for components which represent data

Synopsis

LZX: basevaluecomponent
JavaScript: basevaluecomponent
Type: Class
Access: public
Topic: Components.Base Components
Declared in: lps/components/base/basevaluecomponent.lzx

Description

This abstract class provides a value attribute with data binding to a specific valuedatapath.

an abstract class for components that represent a value for data

Superclass Chain

node (LzNode) » view (LzView) » basecomponent » basevaluecomponent

Known Subclasses

Known Direct Subclasses: baseformitem, baselistitem, baseslider

Details

Properties (1)

value
<attribute name="value" value="null" />
public var value;
the value that this item represents. When selected, the parent selection group's value will be set to this value. Most subclasses require you to call getValue() to get the value of the attribute.

Methods (1)

getValue()
<method name="getValue" />
public function getValue();
returns the value that is represented by this component

LZX Synopsis

<class name="basevaluecomponent" extends=" basecomponent ">
  <attribute name=" value " value="null" />
  <method name=" getValue " />
</class>

JavaScript Synopsis

public basevaluecomponent extends  basecomponent  {
  public var value ;
  prototype public function getValue ();
}