class org.aswing.event.TableCellEditEvent extends AWEvent

The event for table cell editing. @author paling

Class Fields

static var EDITING_CANCELED:String

The TableCellEditEvent.EDITING_CANCELED constant defines the value of the type property of the event object for a tableCellEditingCanceled event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
getRow()the row be edit
getColumn()the column be edit
currentTargetThe Object that defines the event listener that handles the event. For example, if you use comp.addEventListener() to register an event listener, comp is the value of the currentTarget.
targetThe 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.

@eventType tableCellEditingCanceled

static var EDITING_STARTED:String

The TableCellEditEvent.EDITING_STARTED constant defines the value of the type property of the event object for a tableCellEditingStarted event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
getRow()the row be edit
getColumn()the column be edit
getOldValue()the old value
currentTargetThe Object that defines the event listener that handles the event. For example, if you use comp.addEventListener() to register an event listener, comp is the value of the currentTarget.
targetThe 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.

@eventType tableCellEditingStarted

static var EDITING_STOPPED:String

The TableCellEditEvent.EDITING_STOPPED constant defines the value of the type property of the event object for a tableCellEditingStopped event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
getRow()the row be edit
getColumn()the column be edit
getOldValue()the old value
getNewValue()the new value edited
currentTargetThe Object that defines the event listener that handles the event. For example, if you use comp.addEventListener() to register an event listener, comp is the value of the currentTarget.
targetThe 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.

@eventType tableCellEditingStopped

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from AWEvent

function clone():Event

Inherited from Event

var bubbles:Bool
var cancelable:Bool
var currentTarget:Dynamic
var eventPhase:EventPhase
var target:Dynamic
var type:String
function clone():Event
function formatToString(className:String, ?p1:Dynamic, ?p2:Dynamic, ?p3:Dynamic, ?p4:Dynamic, ?p5:Dynamic):String
function isDefaultPrevented():Bool
function preventDefault():Void
function stopImmediatePropagation():Void
function stopPropagation():Void
function toString():String

function new(type:String, row:Int, column:Int, ?oldValue:Dynamic = null, ?newValue:Dynamic = null): Void

Create a cell edit event.

type

the type

row

the edit row

column

the edit column

oldValue

the old value

newValue

the edited new value

function clone(): Event

function getColumn(): Int

function getNewValue(): Dynamic

function getOldValue(): Dynamic

function getRow(): Int