Packageview.primeFaces.surfaceComponents.components
Classpublic class SelectOneRadio
InheritanceSelectOneRadio Inheritance view.primeFaces.supportClasses.GridBase
Implements view.interfaces.ISelectableItemsComponent, view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IHistorySurfaceCustomHandlerComponent, view.interfaces.IInitializeAfterAddedComponent, view.interfaces.ICDATAInformation

Representation of selectOneRadio in HTML

Visual Editor XML:
     <SelectOneRadio
     Attributes
     width="230"
     height="21"
	 value=""
	 columns="0"
     percentWidth=""
     percentHeight="">
	 <selectItem itemLabel="Title" itemValue=""/>
	 </SelectOneRadio>
     
PrimeFaces output:
     <p:selectOneRadio
     Attributes
	 value=""
	 columns="0"
     style="width:230px;height:21px;">
	 	<f:selectItem itemLabel="Title" itemValue=""/>
     </p:selectOneRadio>
     



Public Properties
 PropertyDefined By
  columns : int
PrimeFaces: columns
SelectOneRadio
  height : Number
[override] [read-only] PrimeFaces: style
SelectOneRadio
  percentHeight : Number
[override] [read-only] PrimeFaces: style
SelectOneRadio
  percentWidth : Number
[override] [read-only] PrimeFaces: style
SelectOneRadio
  value : String
PrimeFaces: value
SelectOneRadio
  width : Number
[override] [read-only] PrimeFaces: style
SelectOneRadio
Public Methods
 MethodDefined By
  
SelectOneRadio
  
toRora():XML
SelectOneRadio
  
SelectOneRadio
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = SelectOneRadio
[static]
SelectOneRadio
  PRIME_FACES_XML_ELEMENT_NAME : String = selectOneRadio
[static]
SelectOneRadio
Property Detail
columnsproperty
columns:int

PrimeFaces: columns

The default value is 0.

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


Implementation
    public function get columns():int
    public function set columns(value:int):void

Example
Visual Editor XML:
<SelectOneRadio columns="0"/>
PrimeFaces:
<p:selectOneRadio columns="0"/>
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:
<SelectOneRadio height="120"/>
PrimeFaces:
<selectOneRadio style="width:120px;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:
<SelectOneRadio percentHeight="80"/>
PrimeFaces:
<selectOneRadio 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:
<SelectOneRadio percentWidth="80"/>
PrimeFaces:
<selectOneRadio style="width:80%;"/>
valueproperty 
value:String

PrimeFaces: value

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


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

Example
Visual Editor XML:
<SelectOneRadio value=""/>
PrimeFaces:
<p:selectOneRadio value=""/>
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:
<SelectOneRadio width="120"/>
PrimeFaces:
<selectOneRadio style="width:120px;"/>
Constructor Detail
SelectOneRadio()Constructor
public function SelectOneRadio()



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

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = selectOneRadio