| Package | view.primeFaces.surfaceComponents.components |
| Class | public class SelectBooleanCheckbox |
| Inheritance | SelectBooleanCheckbox 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
| Property | Defined 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 | ||
| Method | Defined By | ||
|---|---|---|---|
| SelectBooleanCheckbox | |||
toRora():XML | SelectBooleanCheckbox | ||
toRoyaleConvertCode():XML | SelectBooleanCheckbox | ||
| Constant | Defined By | ||
|---|---|---|---|
| ELEMENT_NAME : String = CheckBox [static] | SelectBooleanCheckbox | ||
| PRIME_FACES_XML_ELEMENT_NAME : String = selectBooleanCheckbox [static] | SelectBooleanCheckbox | ||
| height | property |
height:Number [read-only] [override]
PrimeFaces: style
The default value is "20".
This property can be used as the source for data binding.
public function get height():Number<CheckBox height="20"/>
<p:selectBooleanCheckbox style="width:121px;height:20px;"/>
| label | property |
label:String[override]
PrimeFaces: label
The default value is "Checkbox".
This property can be used as the source for data binding.
public function get label():String public function set label(value:String):void<CheckBox label="Checkbox"/>
<p:selectBooleanCheckbox label="Checkbox"/>
| percentHeight | property |
percentHeight:Number [read-only] [override]
PrimeFaces: style
This property can be used as the source for data binding.
public function get percentHeight():Number<CheckBox percentHeight="80"/>
<p:selectBooleanCheckbox style="height:80%;"/>
| percentWidth | property |
percentWidth:Number [read-only] [override]
PrimeFaces: style
This property can be used as the source for data binding.
public function get percentWidth():Number<CheckBox percentWidth="80"/>
<p:selectBooleanCheckbox style="width:80%;"/>
| selected | property |
selected:Boolean[override]
PrimeFaces: value
The default value is null in PrimeFaces.
This property can be used as the source for data binding.
public function get selected():Boolean public function set selected(value:Boolean):void<CheckBox selected="false"/>
<p:selectBooleanCheckbox value="null"/>
| width | property |
width:Number [read-only] [override]
PrimeFaces: style
The default value is "121".
This property can be used as the source for data binding.
public function get width():Number<CheckBox width="121"/>
<p:selectBooleanCheckbox style="width:121px;height:20px;"/>
| SelectBooleanCheckbox | () | Constructor |
public function SelectBooleanCheckbox()| toRora | () | method |
public function toRora():XMLReturnsXML |
| toRoyaleConvertCode | () | method |
public function toRoyaleConvertCode():XMLReturnsXML |
| ELEMENT_NAME | Constant |
public static const ELEMENT_NAME:String = CheckBox| PRIME_FACES_XML_ELEMENT_NAME | Constant |
public static const PRIME_FACES_XML_ELEMENT_NAME:String = selectBooleanCheckbox