| Package | com.flextras.autoCompleteComboBox |
| Class | public class AutoCompleteListData |
| Inheritance | AutoCompleteListData ListData BaseListData |
listData
property implemented by drop-in item renderers or drop-in item editors
for the drop down piece of the AutoCompleteComboBox control.
All drop-in item renderers and drop-in item editors must implement
the IDropInListItemRenderer interface, which defines
the listData property.
While the properties of this class are writable, you should consider them to be read only. They are initialized by the List class, and read by an item renderer or item editor. Changing these values can lead to unexpected results.
See also
| Property | Defined by | ||
|---|---|---|---|
| autoCompleteComboBox : AutoCompleteComboBox
The
AutoCompleteComboBox property gives your itemRenderer a link to the AutoCompleteComboBox
| AutoCompleteListData | ||
![]() | columnIndex : int
The index of the column of the List-based control relative
to the currently visible columns of the control, where the first column
is at an index of 1.
| BaseListData | |
![]() | icon : Class
A Class representing the icon for the item in the List control computed
from the list class's
itemToIcon() method
| ListData | |
![]() | label : String
The textual representation of the item data, based on the list class's
itemToLabel() method. | BaseListData | |
![]() | labelField : String
The value of the
labelField property in the list class. | ListData | |
![]() | owner : IUIComponent
A reference to the list object that owns this item.
| BaseListData | |
![]() | rowIndex : int
The index of the row of the DataGrid, List, or Tree control relative
to the currently visible rows of the control, where the first row
is at an index of 1.
| BaseListData | |
| typeAheadText : String
The
typeAheadText property is a hook to the AutoCompleteComboBox and gives access to the
AutoComplete typeAheadText for purposes of styling or other processing in your itemRenderer. | AutoCompleteListData | ||
![]() | uid : String
The unique identifier for this item.
| BaseListData | |
| Method | Defined by | ||
|---|---|---|---|
|
AutoCompleteListData(listData:ListData, argAypeAheadText:String, argAutoCompleteComboBox:AutoCompleteComboBox)
constructor
| AutoCompleteListData | ||
| autoCompleteComboBox | property |
autoCompleteComboBox:AutoCompleteComboBox [read-write]
The AutoCompleteComboBox property gives your itemRenderer a link to the AutoCompleteComboBox
This property can be used as the source for data binding.
Implementation public function get autoCompleteComboBox():AutoCompleteComboBox
public function set autoCompleteComboBox(value:AutoCompleteComboBox):void
| typeAheadText | property |
typeAheadText:String [read-write]
The typeAheadText property is a hook to the AutoCompleteComboBox and gives access to the
AutoComplete typeAheadText for purposes of styling or other processing in your itemRenderer.
This property can be used as the source for data binding.
Implementation public function get typeAheadText():String
public function set typeAheadText(value:String):void
| AutoCompleteListData | () | constructor |
public function AutoCompleteListData(listData:ListData, argAypeAheadText:String, argAutoCompleteComboBox:AutoCompleteComboBox)constructor
ParameterslistData:ListData |
|
argAypeAheadText:String |
|
argAutoCompleteComboBox:AutoCompleteComboBox |