| Package | com.flextoolbox.controls.listClasses |
| Class | public class CheckBoxListItemRenderer |
| Inheritance | CheckBoxListItemRenderer mx.core.UIComponent |
| Implements | mx.controls.listClasses.IDropInListItemRenderer, mx.controls.listClasses.IListItemRenderer |
You can override the default item renderer by creating a custom item renderer.
See also
| Property | Defined by | ||
|---|---|---|---|
| data : Object
The implementation of the
data property
as defined by the IDataRenderer interface. | CheckBoxListItemRenderer | ||
| enabled : Boolean [write-only]
| CheckBoxListItemRenderer | ||
| listData : BaseListData
The implementation of the
listData property
as defined by the IDropInListItemRenderer interface. | CheckBoxListItemRenderer | ||
| Property | Defined by | ||
|---|---|---|---|
| checkBox : CheckBox | CheckBoxListItemRenderer | ||
| icon : IFlexDisplayObject
The internal IFlexDisplayObject that displays the icon in this renderer.
| CheckBoxListItemRenderer | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| CheckBoxListItemRenderer | ||
| Event | Summary | Defined by | ||
|---|---|---|---|---|
Dispatched when the data property changes. | CheckBoxListItemRenderer | |||
| checkBox | property |
protected var checkBox:CheckBox
| data | property |
data:Object [read-write]
The implementation of the data property
as defined by the IDataRenderer interface.
When set, it stores the value and invalidates the component
to trigger a relayout of the component.
This property can be used as the source for data binding.
Implementation public function get data():Object
public function set data(value:Object):void
See also
| enabled | property |
enabled:Boolean [write-only]Implementation
public function set enabled(value:Boolean):void
| icon | property |
protected var icon:IFlexDisplayObjectThe internal IFlexDisplayObject that displays the icon in this renderer.
| listData | property |
listData:BaseListData [read-write]
The implementation of the listData property
as defined by the IDropInListItemRenderer interface.
public function get listData():BaseListData
public function set listData(value:BaseListData):void
See also
| CheckBoxListItemRenderer | () | constructor |
public function CheckBoxListItemRenderer()Constructor.
| dataChange | event |
mx.events.FlexEvent
Dispatched when the data property changes.
When you use a component as an item renderer,
the data property contains the data to display.
You can listen for this event and update the component
when the data property changes.