// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved. package fl.events { import flash.events.Event; /** * The student_ar_fl_events_ListEvent class defines events for list-based components including the List, DataGrid, TileList, and ComboBox components. * These events include the following: *
student_ar_fl_events_ListEvent.ITEM_CLICK
: dispatched after the user clicks the mouse over an item in the component.student_ar_fl_events_ListEvent.ITEM_DOUBLE_CLICK
: dispatched after the user clicks the mouse twice in rapid succession
* over an item in the component.student_ar_fl_events_ListEvent.ITEM_ROLL_OUT
: dispatched after the user rolls the mouse pointer out of an item in the component.student_ar_fl_events_ListEvent.ITEM_ROLL_OVER
: dispatched after the user rolls the mouse pointer over an item in the component.type
property of an
* itemRollOut
event object.
*
* This event has the following properties:
*Property | *Value | *
---|---|
bubbles |
* false |
cancelable | false ; there is
* no default behavior to cancel. |
columnIndex | The zero-based index of the column that * contains the renderer. |
currentTarget | The object that is actively processing * the event object with an event listener. |
index | The zero-based index in the DataProvider * that contains the renderer. |
item | A reference to the data that belongs to the renderer. |
rowIndex | The zero-based index of the row that * contains the renderer. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property of an itemRollOver
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | false |
cancelable | false ; there is
* no default behavior to cancel. |
columnIndex | The zero-based index of the column that * contains the renderer. |
currentTarget | The object that is actively processing * the event object with an event listener. |
index | The zero-based index in the DataProvider * that contains the renderer. |
item | A reference to the data that belongs to the renderer. |
rowIndex | The zero-based index of the row that * contains the renderer. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property of an itemClick
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | false |
cancelable | true |
columnIndex | The zero-based index of the column that * contains the renderer. |
currentTarget | The object that is actively processing * the event object with an event listener. |
index | The zero-based index in the DataProvider * that contains the renderer. |
item | A reference to the data that belongs to the renderer. * |
rowIndex | The zero-based index of the row that * contains the renderer. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
type
property of an itemDoubleClick
* event object.
*
* This event has the following properties:
*Property | Value |
---|---|
bubbles | false |
cancelable | true |
columnIndex | The zero-based index of the column that * contains the renderer. |
currentTarget | The object that is actively processing * the event object with an event listener. |
index | The zero-based index in the DataProvider * that contains the renderer. |
item | A reference to the data that belongs to the renderer. * |
rowIndex | The zero-based index of the row that * contains the renderer. |
target | The object that dispatched the event. The target is
* not always the object listening for the event. Use the currentTarget
* property to access the object that is listening for the event. |
[student_ar_fl_events_ListEvent type=value bubbles=value
* cancelable=value columnIndex=value
* rowIndex=value
]