Packageview.primeFaces.surfaceComponents.components
Classpublic class AutoCompleteDropDownList
InheritanceAutoCompleteDropDownList Inheritance spark.components.ComboBox
Implements view.interfaces.IGetChildrenSurfaceComponent, view.interfaces.IDataProviderComponent, view.interfaces.ISelectableItemsComponent, view.interfaces.IHistorySurfaceComponent, view.interfaces.ICDATAInformation

Representation of PrimeFaces autoComplete component

Visual Editor XML:
     <DropDownList
     Attributes
     width="120"
     height="30"
     multiple="false"
	 value="" completeMethod=""
	 var="" itemLabel="" itemValue=""
	 converter=""
     dropDown="true"/>
     
PrimeFaces output:
     <p:autoComplete
     Attributes
     style="width:120px;height:30px;"
     multiple="false"
	 value="" completeMethod=""
	 var="" itemLabel="" itemValue="" 
	 converter=""
     dropDown="true"/>
     

Default MXML PropertydataProvider



Public Properties
 PropertyDefined By
  completeMethod : String
PrimeFaces: completeMethod (Optional)
AutoCompleteDropDownList
  converter : String
PrimeFaces: converter (Optional)
AutoCompleteDropDownList
  fieldVar : String
PrimeFaces: var
AutoCompleteDropDownList
  height : Number
[override] [read-only] PrimeFaces: style
AutoCompleteDropDownList
  isDropDown : Boolean
[read-only] PrimeFaces: dropdown
AutoCompleteDropDownList
  itemLabel : String
PrimeFaces: itemLabel (Optional)
AutoCompleteDropDownList
  itemValue : String
PrimeFaces: itemValue (Optional)
AutoCompleteDropDownList
  multiple : Boolean
PrimeFaces: multiple
AutoCompleteDropDownList
  percentHeight : Number
[override] [read-only] PrimeFaces: style
AutoCompleteDropDownList
  percentWidth : Number
[override] [read-only] PrimeFaces: style
AutoCompleteDropDownList
  value : String
PrimeFaces: value
AutoCompleteDropDownList
  width : Number
[override] [read-only] PrimeFaces: style
AutoCompleteDropDownList
Public Methods
 MethodDefined By
  
AutoCompleteDropDownList
  
toRora():XML
AutoCompleteDropDownList
  
AutoCompleteDropDownList
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = DropDownList
[static]
AutoCompleteDropDownList
  PRIME_FACES_XML_ELEMENT_NAME : String = autoComplete
[static]
AutoCompleteDropDownList
Property Detail
completeMethodproperty
completeMethod:String

PrimeFaces: completeMethod (Optional)

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


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

Example
Visual Editor XML:
<DropDownList completeMethod=""/>
PrimeFaces:
<p:autoComplete completeMethod=""/>
converterproperty 
converter:String

PrimeFaces: converter (Optional)

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


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

Example
Visual Editor XML:
<DropDownList converter=""/>
PrimeFaces:
<p:autoComplete converter=""/>
fieldVarproperty 
fieldVar:String

PrimeFaces: var

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


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

Example
Visual Editor XML:
<DropDownList var=""/>
PrimeFaces:
<p:autoComplete var=""/>
heightproperty 
height:Number  [read-only] [override]

PrimeFaces: style

The default value is "30".

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


Implementation
    public function get height():Number

Example
Visual Editor XML:
<DropDownList height="30"/>
PrimeFaces:
<p:autoComplete style="width:100px;height:30px;"/>
isDropDownproperty 
isDropDown:Boolean  [read-only]

PrimeFaces: dropdown

The default value is "true".


Implementation
    public function get isDropDown():Boolean

Example
Visual Editor XML:
<DropDownList dropdown="true"/>
PrimeFaces:
<p:autoComplete dropdown="true"/>
itemLabelproperty 
itemLabel:String

PrimeFaces: itemLabel (Optional)

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


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

Example
Visual Editor XML:
<DropDownList itemLabel=""/>
PrimeFaces:
<p:autoComplete itemLabel=""/>
itemValueproperty 
itemValue:String

PrimeFaces: itemValue (Optional)

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


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

Example
Visual Editor XML:
<DropDownList itemValue=""/>
PrimeFaces:
<p:autoComplete itemValue=""/>
multipleproperty 
multiple:Boolean

PrimeFaces: multiple

The default value is "false".

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


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

Example
Visual Editor XML:
<DropDownList multiple="false"/>
PrimeFaces:
<p:autoComplete multiple="false"/>
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:
<DropDownList percentHeight="80"/>
PrimeFaces:
<p:autoComplete 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:
<DropDownList percentWidth="80"/>
PrimeFaces:
<p:autoComplete 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:
<DropDownList value=""/>
PrimeFaces:
<p:autoComplete 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:
<DropDownList width="120"/>
PrimeFaces:
<p:autoComplete style="width:120px;height:30px;"/>
Constructor Detail
AutoCompleteDropDownList()Constructor
public function AutoCompleteDropDownList()



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

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = autoComplete