- Legend to Symbols

-
Interface nokia.maps.dom.FocusEvent
Interface Summary
This event is fired if a target receives or loses the focus.
Note that this class represents an unimplemented interface. It is included here to document its properties. The class is derived from nokia.maps.dom.Event, but, in addition to the properties of the parent class, it has the properties described here.
Extends
nokia.maps.dom.Event.
Method Summary
cancel
()
: nokia.maps.dom.Event
This method cancels the given event.
clone
()
: nokia.maps.dom.Event
This method clones the given event without cloning the properties (non-recursive cloning only).
preventDefault
()
: nokia.maps.dom.Event
This method cancels the default action for the given event.
preventUnload
(msg)
: nokia.maps.dom.Event
This method can be used only when the given event is of the type "beforeunload" to ask the user to confirm whether he wants to leave the page.
stopImmediatePropagation
()
: nokia.maps.dom.Event
This method prevents other event listeners from being triggered and, in contrast to
Event.stopPropagation(), its effect is immediate.
stopPropagation
()
: nokia.maps.dom.Event
This method prevents other event listeners from being triggered, but its effect is deferred until all event listeners attached on the
Event.currentTarget have been triggered.
Field Summary
Number
AT_TARGET
This field is an event phase identifier, indicating the target phase, which means it is being evaluated at the event target.
Number
BUBBLING_PHASE
This field is an event phase identifier, indicating the bubbling phase.
Number
CAPTURING_PHASE
This field is an event phase identifier, indicating the capture phase.
Number
PROPAGATION_OK
This field is an identifier, indicating that the propagation of the event has not been stopped.
Number
PROPAGATION_STOP
This field is an identifier, indicating that the propagation of the event has been stopped.
Number
PROPAGATION_STOP_IMMEDIATE
This field is an identifier, indicating that the propagation of the event has been stopped with immediate effect.
Boolean
bubbles
This property indicates whether the event is a bubbling event (
true) or not (false).
Boolean
canBubble
This property indicates whether the event can bubble (
true) or not (false).
Boolean
canSicker
This property indicates whether the event can sicker (whether in the capture phase, listeners can be iterated from the top down) or not.
Boolean
cancelable
This property indicates whether or not an event can have its default action canceled (prevented).
nokia.maps.dom.EventTarget
currentTarget
This property indicates the object whose
eventListeners are currently being processed.
Boolean
defaultPrevented
This property indicates whether
preventDefault() has been called for this event.
Number
eventPhase
This property indicates the phase in the event flow the given event has reached.
String
namespaceURI
This property holds the namespace URI associated with the event or
null if it is unspecified.
Event
nativeEvent
This property holds a reference to the native DOM event on which the given normalized event object is based.
nokia.maps.dom.Page
page
This property holds a reference to the page to which the given event relates.
Number
propagation
This property indicates the status of event propagation.
nokia.maps.dom.EventTarget
target
This property holds the target object of the event.
Number
timeStamp
This property specifies the time at which the event was created in milliseconds relative to 1970-01-01T00:00:00Z.
String
type
This property holds the local name of the event type.
Direct Inheritance
Inherited from nokia.maps.dom.Event:
cancel
clone
preventDefault
preventUnload
stopImmediatePropagation
stopPropagation
AT_TARGET
BUBBLING_PHASE
CAPTURING_PHASE
PROPAGATION_OK
PROPAGATION_STOP
PROPAGATION_STOP_IMMEDIATE
bubbles
canBubble
canSicker
cancelable
currentTarget
defaultPrevented
eventPhase
namespaceURI
nativeEvent
page
propagation
target
timeStamp
type