Base class for UIEvent.
Encapsulates input event information for an event that propagates through a container and control hierarchy. Implements W3C standard event handling.
Go to Property Listing | Method Listing
Property |
Type |
Access |
Description |
---|---|---|---|
readonly |
True if the event is of a type that bubbles. |
||
readonly |
True if the default action associated with the event can be canceled with preventDefault(). |
||
readonly |
True if this event can be captured. |
||
readonly |
The event target object which is currently handling the event. During capturing and bubbling, this is different from the property target. |
||
readonly |
The current phase of event propagation; one of none, target, capture, bubble. |
||
readonly |
The event target object for this event. |
||
DateSUI |
readonly |
The date and time at which the event occurred. |
|
readonly |
The name of the event that this object represents. Event types are listed in the JavaScript Tools Guide. |
Name |
Type |
Access |
Description |
---|---|---|---|
VariesSUI |
readonly |
||
VariesSUI |
readonly |
||
VariesSUI |
readonly |
||
VariesSUI |
readonly |
undefined preventDefault ()
Prevents the default action associated with this event from being called.
undefined stopPropagation ()
Stops the propagation of this event.
StaticText (SUI).dispatchEvent()
IconButton (SUI).dispatchEvent()
EditText (SUI).dispatchEvent()
DropDownList (SUI).dispatchEvent()
Checkbox (SUI).dispatchEvent()
Scrollbar (SUI).dispatchEvent()
RadioButton (SUI).dispatchEvent()
Progressbar (SUI).dispatchEvent()
TreeView (SUI).dispatchEvent()