Packageview.primeFaces.surfaceComponents.components
Classpublic class TabView
InheritanceTabView Inheritance components.tabNavigator.TabNavigatorWithOrientation
Implements view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.ISelectableItemsComponent, view.interfaces.IHistorySurfaceCustomHandlerComponent, interfaces.IComponentSizeOutput, view.interfaces.IDiv, view.interfaces.ICDATAInformation

Representation of PrimeFaces tabView component.

Visual Editor XML:
     <TabView
     Attributes
     width="120"
     height="120"
     orientation="top"
     scrollable="false">
      <tab title="Tab">
        <Div class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop" wrap="false"/>
      </tab>
     </TabView>
     
PrimeFaces output:
     <p:tabView
     Attributes
     style="width:120px;height:120px;"
     orientation="top"
     scrollable="false"/>
      <p:tab title="Tab">
          <div class="flexHorizontalLayout flexHorizontalLayoutLeft flexHorizontalLayoutTop" />
      </p:tab>
     </p:tabView>
     

Default MXML PropertymxmlContentFactory



Public Properties
 PropertyDefined By
  height : Number
[override] [read-only] PrimeFaces: style
TabView
  orientation : String
[override] [read-only] PrimeFaces: orientation
TabView
  percentHeight : Number
[override] [read-only] PrimeFaces: style
TabView
  percentWidth : Number
[override] [read-only] PrimeFaces: style
TabView
  scrollable : Boolean
[override] [read-only] PrimeFaces: scrollable
TabView
  width : Number
[override] [read-only] PrimeFaces: style
TabView
Public Methods
 MethodDefined By
  
TabView
  
TabView
  
toRora():XML
TabView
  
TabView
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = TabView
[static]
TabView
  PRIME_FACES_XML_ELEMENT_NAME : String = tabView
[static]
TabView
Property Detail
heightproperty
height: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 height():Number

Example
Visual Editor XML:
<TabView height="20"/>
PrimeFaces:
<p:tabView style="width:120px;height:120px;"/>
orientationproperty 
orientation:String  [read-only] [override]

PrimeFaces: orientation

The default value is "top".

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


Implementation
    public function get orientation():String

Example
Visual Editor XML:
<TabView orientation="top"/>
PrimeFaces:
<p:tabView orientation="top"/>
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:
<TabView percentHeight="80"/>
PrimeFaces:
<p:tabView style="percentHeight: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:
<TabView percentWidth="80"/>
PrimeFaces:
<p:tabView style="percentWidth:80%;"/>
scrollableproperty 
scrollable:Boolean  [read-only] [override]

PrimeFaces: scrollable

The default value is "false".

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


Implementation
    public function get scrollable():Boolean

Example
Visual Editor XML:
<TabView scrollable="false"/>
PrimeFaces:
<p:tabView scrollable="false"/>
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:
<TabView width="120"/>
PrimeFaces:
<p:tabView style="width:120px;height:120px;"/>
Constructor Detail
TabView()Constructor
public function TabView()



Method Detail
getNewDiv()method
public function getNewDiv():Div

Returns
Div
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 = TabView

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = tabView