Packageview.primeFaces.surfaceComponents.components
Classpublic class OutputPanel
InheritanceOutputPanel Inheritance view.primeFaces.supportClasses.Container
Implements view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceComponent, interfaces.IComponentSizeOutput

Representation of div in HTML

Visual Editor XML:
     <OutputPanel
     Attributes
     width="120"
     height="120"
     percentWidth="80"
     percentHeight="80"
     
PrimeFaces output:
     <p:outputPanel
     Attributes
     style="width:120px;height:120px;"
     

Default MXML PropertymxmlContentFactory



Public Properties
 PropertyDefined By
  ELEMENT_NAME : String = OutputPanel
[static]
OutputPanel
  height : Number
[override] PrimeFaces: style
OutputPanel
  percentHeight : Number
[override] [read-only] PrimeFaces: style
OutputPanel
  percentWidth : Number
[override] [read-only] PrimeFaces: style
OutputPanel
  width : Number
[override] [read-only] PrimeFaces: style
OutputPanel
Public Methods
 MethodDefined By
  
OutputPanel
  
toRora():XML
OutputPanel
  
OutputPanel
Protected Methods
 MethodDefined By
  
[override]
OutputPanel
Public Constants
 ConstantDefined By
  PRIME_FACES_XML_ELEMENT_NAME : String = outputPanel
[static]
OutputPanel
Property Detail
ELEMENT_NAMEproperty
public static var ELEMENT_NAME:String = OutputPanel

heightproperty 
height:Number[override]

PrimeFaces: style

The default value is "120".

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


Implementation
    public function get height():Number
    public function set height(value:Number):void

Example
Visual Editor XML:
<Div height="120"/>
PrimeFaces:
<div style="height:120px;"/>
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:
<Div percentHeight="80"/>
PrimeFaces:
<div 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:
<Div percentWidth="80"/>
PrimeFaces:
<div style="width:80%;"/>
widthproperty 
width:Number  [read-only] [override]

PrimeFaces: style

The default value is "120".

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


Implementation
    public function get width():Number

Example
Visual Editor XML:
<Div width="120"/>
PrimeFaces:
<div style="width:120px;"/>
Constructor Detail
OutputPanel()Constructor
public function OutputPanel()



Method Detail
commitProperties()method
override protected function commitProperties():void

toRora()method 
public function toRora():XML

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

Returns
XML
Constant Detail
PRIME_FACES_XML_ELEMENT_NAMEConstant
public static const PRIME_FACES_XML_ELEMENT_NAME:String = outputPanel