Packageview.primeFaces.surfaceComponents.components
Classpublic class SelectBooleanCheckbox
InheritanceSelectBooleanCheckbox Inheritance spark.components.CheckBox
Implements view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceComponent, view.interfaces.ICDATAInformation

Representation of PrimeFaces selectBooleanCheckbox component.

Visual Editor XML:
     <CheckBox
     Attributes
     width="121"
     height="20"
     label="Checkbox"
	 selected="false"/>
     
PrimeFaces output:
     <p:selectBooleanCheckbox
     Attributes
     style="width:121px;height:20px;"
     label="Checkbox"
	 value="null"/>
     

Default MXML Propertylabel



Public Properties
 PropertyDefined By
  height : Number
[override] [read-only] PrimeFaces: style
SelectBooleanCheckbox
  label : String
[override] PrimeFaces: label
SelectBooleanCheckbox
  percentHeight : Number
[override] [read-only] PrimeFaces: style
SelectBooleanCheckbox
  percentWidth : Number
[override] [read-only] PrimeFaces: style
SelectBooleanCheckbox
  selected : Boolean
[override] PrimeFaces: value
SelectBooleanCheckbox
  width : Number
[override] [read-only] PrimeFaces: style
SelectBooleanCheckbox
Public Methods
 MethodDefined By
  
SelectBooleanCheckbox
  
toRora():XML
SelectBooleanCheckbox
  
SelectBooleanCheckbox
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = CheckBox
[static]
SelectBooleanCheckbox
  PRIME_FACES_XML_ELEMENT_NAME : String = selectBooleanCheckbox
[static]
SelectBooleanCheckbox
Property Detail
heightproperty
height:Number  [read-only] [override]

PrimeFaces: style

The default value is "20".

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


Implementation
    public function get height():Number

Example
Visual Editor XML:
<CheckBox height="20"/>
PrimeFaces:
<p:selectBooleanCheckbox style="width:121px;height:20px;"/>
labelproperty 
label:String[override]

PrimeFaces: label

The default value is "Checkbox".

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


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

Example
Visual Editor XML:
<CheckBox label="Checkbox"/>
PrimeFaces:
<p:selectBooleanCheckbox label="Checkbox"/>
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:
<CheckBox percentHeight="80"/>
PrimeFaces:
<p:selectBooleanCheckbox 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:
<CheckBox percentWidth="80"/>
PrimeFaces:
<p:selectBooleanCheckbox style="width:80%;"/>
selectedproperty 
selected:Boolean[override]

PrimeFaces: value

The default value is null in PrimeFaces.

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


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

Example
Visual Editor XML:
<CheckBox selected="false"/>
PrimeFaces:
<p:selectBooleanCheckbox value="null"/>
widthproperty 
width:Number  [read-only] [override]

PrimeFaces: style

The default value is "121".

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


Implementation
    public function get width():Number

Example
Visual Editor XML:
<CheckBox width="121"/>
PrimeFaces:
<p:selectBooleanCheckbox style="width:121px;height:20px;"/>
Constructor Detail
SelectBooleanCheckbox()Constructor
public function SelectBooleanCheckbox()



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 = CheckBox

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = selectBooleanCheckbox