Package | view.primeFaces.surfaceComponents.components |
Class | public class AutoCompleteDropDownList |
Inheritance | AutoCompleteDropDownList ![]() |
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
Property | Defined 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 |
Method | Defined By | ||
---|---|---|---|
AutoCompleteDropDownList | |||
toRora():XML | AutoCompleteDropDownList | ||
toRoyaleConvertCode():XML | AutoCompleteDropDownList |
Constant | Defined By | ||
---|---|---|---|
ELEMENT_NAME : String = DropDownList [static] | AutoCompleteDropDownList | ||
PRIME_FACES_XML_ELEMENT_NAME : String = autoComplete [static] | AutoCompleteDropDownList |
completeMethod | property |
completeMethod:String
PrimeFaces: completeMethod (Optional)
This property can be used as the source for data binding.
public function get completeMethod():String
public function set completeMethod(value:String):void
<DropDownList completeMethod=""/>
<p:autoComplete completeMethod=""/>
converter | property |
converter:String
PrimeFaces: converter (Optional)
This property can be used as the source for data binding.
public function get converter():String
public function set converter(value:String):void
<DropDownList converter=""/>
<p:autoComplete converter=""/>
fieldVar | property |
fieldVar:String
PrimeFaces: var
This property can be used as the source for data binding.
public function get fieldVar():String
public function set fieldVar(value:String):void
<DropDownList var=""/>
<p:autoComplete var=""/>
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
<DropDownList height="30"/>
<p:autoComplete style="width:100px;height:30px;"/>
isDropDown | property |
isDropDown:Boolean
[read-only]
PrimeFaces: dropdown
The default value is "true"
.
public function get isDropDown():Boolean
<DropDownList dropdown="true"/>
<p:autoComplete dropdown="true"/>
itemLabel | property |
itemLabel:String
PrimeFaces: itemLabel (Optional)
This property can be used as the source for data binding.
public function get itemLabel():String
public function set itemLabel(value:String):void
<DropDownList itemLabel=""/>
<p:autoComplete itemLabel=""/>
itemValue | property |
itemValue:String
PrimeFaces: itemValue (Optional)
This property can be used as the source for data binding.
public function get itemValue():String
public function set itemValue(value:String):void
<DropDownList itemValue=""/>
<p:autoComplete itemValue=""/>
multiple | property |
multiple:Boolean
PrimeFaces: multiple
The default value is "false"
.
This property can be used as the source for data binding.
public function get multiple():Boolean
public function set multiple(value:Boolean):void
<DropDownList multiple="false"/>
<p:autoComplete multiple="false"/>
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
<DropDownList percentHeight="80"/>
<p:autoComplete 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
<DropDownList percentWidth="80"/>
<p:autoComplete style="width:80%;"/>
value | property |
value:String
PrimeFaces: value
This property can be used as the source for data binding.
public function get value():String
public function set value(value:String):void
<DropDownList value=""/>
<p:autoComplete 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
<DropDownList width="120"/>
<p:autoComplete style="width:120px;height:30px;"/>
AutoCompleteDropDownList | () | Constructor |
public function AutoCompleteDropDownList()
toRora | () | method |
public function toRora():XML
ReturnsXML |
toRoyaleConvertCode | () | method |
public function toRoyaleConvertCode():XML
ReturnsXML |
ELEMENT_NAME | Constant |
public static const ELEMENT_NAME:String = DropDownList
PRIME_FACES_XML_ELEMENT_NAME | Constant |
public static const PRIME_FACES_XML_ELEMENT_NAME:String = autoComplete