Paquete | spark.events |
Clase | public class GridItemEditorEvent |
Herencia | GridItemEditorEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The life cycle starts with the dispatch of an
GRID_ITEM_EDITOR_SESSION_STARTING
event.
You can cancel the event to stop the editing session by
calling the preventDefault()
method in the event listener.
After the item editor opens, the GRID_ITEM_EDITOR_SESSION_START
is dispatched to notify listeners that the editor has been opened.
The editing session can be saved or canceled. If the session is saved,
then the GRID_ITEM_EDITOR_SESSION_SAVE
event is dispatched.
If the editor is canceled, a GRID_ITEM_EDITOR_SESSION_CANCEL
event is dispatched.
Elementos de API relacionados
spark.components.gridClasses.IGridItemEditor
spark.components.gridClasses.GridColumn
spark.components.gridClasses.GridColumn.itemEditor
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
column : GridColumn
The column of the cell that is being edited. | GridItemEditorEvent | ||
columnIndex : int
The zero-based index of the column that is being edited. | GridItemEditorEvent | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
rowIndex : int
The index of the row that is being edited. | GridItemEditorEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
GridItemEditorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, rowIndex:uint = -1, columnIndex:uint = -1, column:GridColumn = null)
Constructor. | GridItemEditorEvent | ||
Duplica una instancia de la subclase Event. | Event | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
GRID_ITEM_EDITOR_SESSION_CANCEL : String = "gridItemEditorSessionCancel" [estática]
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_CANCEL
constant defines the value of the type property of the
event object for a cancelridItemEditor event. | GridItemEditorEvent | ||
GRID_ITEM_EDITOR_SESSION_SAVE : String = "gridItemEditorSessionSave" [estática]
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_SAVE
constant defines the value of the type property of the
event object for a saveGridItemEditor event. | GridItemEditorEvent | ||
GRID_ITEM_EDITOR_SESSION_START : String = "gridItemEditorSessionStart" [estática]
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_START
constant defines the value of the type property of the
event object for a openGridItemEditor event. | GridItemEditorEvent | ||
GRID_ITEM_EDITOR_SESSION_STARTING : String = "gridItemEditorSessionStarting" [estática]
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_STARTING
constant defines the value of the type property of the
event object for a startGridItemEditorSession event. | GridItemEditorEvent |
column | propiedad |
public var column:GridColumn
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The column of the cell that is being edited.
columnIndex | propiedad |
public var columnIndex:int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The zero-based index of the column that is being edited.
rowIndex | propiedad |
public var rowIndex:int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The index of the row that is being edited.
GridItemEditorEvent | () | Información sobre |
public function GridItemEditorEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, rowIndex:uint = -1, columnIndex:uint = -1, column:GridColumn = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
Constructor.
Parámetrostype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble
up the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior
associated with the event can be prevented.
| |
rowIndex:uint (default = -1 ) — The zero-based index of the column that is being edited.
| |
columnIndex:uint (default = -1 ) — The zero-based index of the column that is being edited.
| |
column:GridColumn (default = null ) — The column that is being edited.
|
Elementos de API relacionados
GRID_ITEM_EDITOR_SESSION_CANCEL | Constante |
public static const GRID_ITEM_EDITOR_SESSION_CANCEL:String = "gridItemEditorSessionCancel"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_CANCEL
constant defines the value of the type
property of the
event object for a cancelridItemEditor
event.
Dispatched after the item editor has been closed without saving its data.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
columnIndex | The zero-based column index of the item that was edited but not modified. |
rowIndex | The zero-based row index of the item that was edited but not modified. |
column | The column of the cell that was edited. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_CANCEL |
Elementos de API relacionados
GRID_ITEM_EDITOR_SESSION_SAVE | Constante |
public static const GRID_ITEM_EDITOR_SESSION_SAVE:String = "gridItemEditorSessionSave"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_SAVE
constant defines the value of the type
property of the
event object for a saveGridItemEditor
event.
Dispatched after the data in item editor has been saved into the data
provider and the editor has been closed.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
columnIndex | The zero-based column index of the item that was modified. |
rowIndex | The zero-based row index of the item that was modified. |
column | The column of the cell that was edited. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_SAVE |
Elementos de API relacionados
GRID_ITEM_EDITOR_SESSION_START | Constante |
public static const GRID_ITEM_EDITOR_SESSION_START:String = "gridItemEditorSessionStart"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_START
constant defines the value of the type
property of the
event object for a openGridItemEditor
event.
Dispatched immediately after an item editor has been opened.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
columnIndex | The zero-based column index of the item editor. |
rowIndex | The zero-based row index of the item editor. |
column | The column of the cell that is being edited. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_START |
Elementos de API relacionados
GRID_ITEM_EDITOR_SESSION_STARTING | Constante |
public static const GRID_ITEM_EDITOR_SESSION_STARTING:String = "gridItemEditorSessionStarting"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4.5 |
Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_STARTING
constant defines the value of the type
property of the
event object for a startGridItemEditorSession
event.
Dispatched when a new item editor session has been requested. A listener
can dynamically determine if a cell is editable and cancel the edit by calling
the preventDefault()
method if it is not.
A listener can also dynamically change the editor used
by assigning a different item editor to a grid column.
If this event is canceled the item editor will not be created.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
columnIndex | The zero-based column index of the requested item editor. |
rowIndex | The zero-based row index of the requested item editor. |
column | The column of the cell associated with the edit request. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | GridItemEditorEvent.GRID_ITEM_EDITOR_SESSION_STARTING |
Elementos de API relacionados
Tue Jun 12 2018, 02:12 PM Z