| Previous | Next | Frames | No Frames |
| Summary: Field | Property | Contructor | Method | Detail: Field | Property | Contructor | Method |
Object | +--xp.events.Event
Field Summary | |
| public | bubbles: Boolean |
| Controls wheher this event can be routed or bubbled | |
| public | cancel: Boolean |
| Gets or sets a value indicating whether the event should be canceled. | |
| public | currentTarget: Object |
| Used to indicate the EventTarget whose EventListeners are currently being processed. | |
| public | handled: Boolean |
| Has this event been handled | |
| public | target: Object |
| The target of the event | |
| public | type: String |
| The type or name of event | |
Constructor | |
| public | Event ( type: String) |
| Constructs a new event | |
| public var bubbles: Boolean |
| Controls wheher this event can be routed or bubbled Controls will route or bubble events to their parents when dispatched |
| public var cancel: Boolean |
| Gets or sets a value indicating whether the event should be canceled. Not all events can be cancelled. See xp.events.EventTypes and particular event for details Setting this property has no effect on events that are not cancelable. Events that are cancelable usually end in "ing" like selecting, loading etc. |
| public var currentTarget: Object |
| Used to indicate the EventTarget whose EventListeners are currently being processed. This is particularly useful during event bubbling. |
| public var handled: Boolean |
| Has this event been handled Routed events will stop being bubbled if this property is set to true |
| public var target: Object |
| The target of the event The object raising the event |
| public var type: String |
| The type or name of event The type or name of event |
|
| Constructs a new event |