Packageorg.openzet.controls
Classpublic class SuggestInput
InheritanceSuggestInput Inheritance mx.controls.TextInput
SubclassesSearchBox

Flex version of SuggestInput class that extends TextInput class. This class provides dropdown list control to show possible candiates of words that users might chooose.



Public Properties
 PropertyDefined by
  dataProvider : Object
Dataprovider property to provide dropdown control with a dataProvider.
SuggestInput
  displayField : String
Property to specify a field name of the dataProvider on which to apply data filtering.
SuggestInput
  list : ListBase
Property to specify a list-like control to use as a dropdown control.
SuggestInput
Public Methods
 MethodDefined by
  
Constructor

Adds event listeners to handle events such as keyDown, resize events, etc.

SuggestInput
Property detail
dataProviderproperty
dataProvider:Object  [read-write]

Dataprovider property to provide dropdown control with a dataProvider.

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

Implementation
    public function get dataProvider():Object
    public function set dataProvider(value:Object):void
displayFieldproperty 
displayField:String  [read-write]

Property to specify a field name of the dataProvider on which to apply data filtering. This property should always be set, otherwise this control would not function correctly.

Implementation
    public function get displayField():String
    public function set displayField(value:String):void
listproperty 
list:ListBase  [read-write]

Property to specify a list-like control to use as a dropdown control.

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

Implementation
    public function get list():ListBase
    public function set list(value:ListBase):void
Constructor detail
SuggestInput()constructor
public function SuggestInput()

Constructor

Adds event listeners to handle events such as keyDown, resize events, etc.