Packageview.primeFaces.surfaceComponents.components
Classpublic class OutputLabel
InheritanceOutputLabel Inheritance spark.components.Label
Implements view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceComponent, view.interfaces.ICDATAInformation, interfaces.IComponentSizeOutput

Representation of PrimeFaces outputLabel component.

Visual Editor XML:
     <OutputLabel
     Attributes
     width="100"
     height="30"
     value="Label"
     for=""
     indicateRequired="false"/>
     
PrimeFaces output:
     <h:outputLabel
     Attributes
     style="width:100px;height:30px;"
     value="Label"
     for=""/>
     

Default MXML Propertytext



Public Properties
 PropertyDefined By
  forAttribute : String
PrimeFaces: for
OutputLabel
  height : Number
[override] [read-only] PrimeFaces: style
OutputLabel
  heightOutput : Boolean
OutputLabel
  indicateRequired : Boolean
PrimeFaces: none
OutputLabel
  percentHeight : Number
[override] [read-only] PrimeFaces: style
OutputLabel
  percentWidth : Number
[override] [read-only] PrimeFaces: style
OutputLabel
  text : String
[override] PrimeFaces: value
OutputLabel
  width : Number
[override] [read-only] PrimeFaces: style
OutputLabel
  widthOutput : Boolean
OutputLabel
Protected Properties
 PropertyDefined By
  heightOutputChanged : Boolean
OutputLabel
  widthOutputChanged : Boolean
OutputLabel
Public Methods
 MethodDefined By
  
OutputLabel
  
toRora():XML
OutputLabel
  
OutputLabel
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = OutputLabel
[static]
OutputLabel
  PRIME_FACES_XML_ELEMENT_NAME : String = outputLabel
[static]
OutputLabel
Property Detail
forAttributeproperty
forAttribute:String

PrimeFaces: for

This property can be used as the source for data binding.


Implementation
    public function get forAttribute():String
    public function set forAttribute(value:String):void

Example
Visual Editor XML:
<OutputLabel for=""/>
PrimeFaces:
<h:outputLabel for=""/>
heightproperty 
height:Number  [read-only] [override]

PrimeFaces: style

The default value is "30".

This property can be used as the source for data binding.


Implementation
    public function get height():Number

Example
Visual Editor XML:
<OutputLabel height="30"/>
PrimeFaces:
<p:outputLabel style="width:100px;height:30px;"/>
heightOutputproperty 
heightOutput:Boolean

This property can be used as the source for data binding.


Implementation
    public function get heightOutput():Boolean
    public function set heightOutput(value:Boolean):void
heightOutputChangedproperty 
protected var heightOutputChanged:Boolean

indicateRequiredproperty 
indicateRequired:Boolean

PrimeFaces: none

The default value is "false".

This property can be used as the source for data binding.


Implementation
    public function get indicateRequired():Boolean
    public function set indicateRequired(value:Boolean):void

Example
Visual Editor XML:
<OutputLabel indicateRequired="false"/>
percentHeightproperty 
percentHeight:Number  [read-only] [override]

PrimeFaces: style

This property can be used as the source for data binding.


Implementation
    public function get percentHeight():Number

Example
Visual Editor XML:
<OutputLabel percentHeight="80"/>
PrimeFaces:
<p:outputLabel style="height:80%;"/>
percentWidthproperty 
percentWidth:Number  [read-only] [override]

PrimeFaces: style

This property can be used as the source for data binding.


Implementation
    public function get percentWidth():Number

Example
Visual Editor XML:
<OutputLabel percentWidth="80"/>
PrimeFaces:
<p:outputLabel style="width:80%;"/>
textproperty 
text:String[override]

PrimeFaces: value

The default value is "Label".

This property can be used as the source for data binding.


Implementation
    public function get text():String
    public function set text(value:String):void

Example
Visual Editor XML:
<OutputLabel value="Label"/>
PrimeFaces:
<h:outputLabel value="Label"/>
widthproperty 
width:Number  [read-only] [override]

PrimeFaces: style

The default value is "100".

This property can be used as the source for data binding.


Implementation
    public function get width():Number

Example
Visual Editor XML:
<OutputLabel width="100"/>
PrimeFaces:
<p:outputLabel style="width:100px;height:30px;"/>
widthOutputproperty 
widthOutput:Boolean

This property can be used as the source for data binding.


Implementation
    public function get widthOutput():Boolean
    public function set widthOutput(value:Boolean):void
widthOutputChangedproperty 
protected var widthOutputChanged:Boolean

Constructor Detail
OutputLabel()Constructor
public function OutputLabel()



Method Detail
toRora()method
public function toRora():XML

Returns
XML
toRoyaleConvertCode()method 
public function toRoyaleConvertCode():XML

Returns
XML
Constant Detail
ELEMENT_NAMEConstant
public static const ELEMENT_NAME:String = OutputLabel

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = outputLabel