| Package | view.primeFaces.surfaceComponents.components |
| Class | public class SelectOneListbox |
| Inheritance | SelectOneListbox spark.components.List |
| Implements | view.interfaces.ISelectableItemsComponent, view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceCustomHandlerComponent, view.interfaces.ICDATAInformation |
Representation of selectOneMenu in HTML
Visual Editor XML:
<SelectOneListbox
Attributes
width="120"
height="30"
percentWidth=""
percentHeight=""
value="">
<selectItem itemLabel="Title" itemValue=""/>
</SelectOneListbox>
PrimeFaces output:
<p:selectOneListbox
Attributes
style="width:120px;height:30px;"
value="">
<f:selectItem itemLabel="Title" itemValue=""/>
</p:selectOneListbox>
Default MXML PropertydataProvider
| Property | Defined By | ||
|---|---|---|---|
| height : Number [override] [read-only]
PrimeFaces: style
| SelectOneListbox | ||
| percentHeight : Number [override] [read-only]
PrimeFaces: style
| SelectOneListbox | ||
| percentWidth : Number [override] [read-only]
PrimeFaces: style
| SelectOneListbox | ||
| value : String
PrimeFaces: value
| SelectOneListbox | ||
| width : Number [override] [read-only]
PrimeFaces: style
| SelectOneListbox | ||
| Method | Defined By | ||
|---|---|---|---|
| SelectOneListbox | |||
toRora():XML | SelectOneListbox | ||
toRoyaleConvertCode():XML | SelectOneListbox | ||
| Constant | Defined By | ||
|---|---|---|---|
| ELEMENT_NAME : String = SelectOneListbox [static] | SelectOneListbox | ||
| PRIME_FACES_XML_ELEMENT_NAME : String = selectOneListbox [static] | SelectOneListbox | ||
| height | property |
height:Number [read-only] [override]
PrimeFaces: style
The default value is 30.
This property can be used as the source for data binding.
public function get height():Number<SelectOneListbox height="30"/>
<p:selectOneListbox style="height:30px;"/>
| 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<SelectOneListbox percentHeight="80"/>
<p:selectOneListbox style="percentHeight: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<SelectOneListbox percentWidth="80"/>
<p:selectOneListbox style="percentWidth:80%;"/>
| value | property |
value:String
PrimeFaces: value
The default value is null.
This property can be used as the source for data binding.
public function get value():String public function set value(value:String):void<SelectOneListbox value=""/>
<p:selectOneListbox value=""/>
| width | property |
width:Number [read-only] [override]
PrimeFaces: style
The default value is 120.
This property can be used as the source for data binding.
public function get width():Number<SelectOneListbox width="120"/>
<p:selectOneListbox style="width:120px;"/>
| SelectOneListbox | () | Constructor |
public function SelectOneListbox()| toRora | () | method |
public function toRora():XMLReturnsXML |
| toRoyaleConvertCode | () | method |
public function toRoyaleConvertCode():XMLReturnsXML |
| ELEMENT_NAME | Constant |
public static const ELEMENT_NAME:String = SelectOneListbox| PRIME_FACES_XML_ELEMENT_NAME | Constant |
public static const PRIME_FACES_XML_ELEMENT_NAME:String = selectOneListbox