Observable DragTracker
Package: | Ext.dd |
Defined In: | DragTracker.js |
Class: | DragTracker |
Extends: | Observable |
Config Options | Defined By | |
---|---|---|
active : Boolean Defaults to false. | DragTracker | |
autoStart : Boolean/Number Defaults to false. Specify true to defer trigger start by 1000 ms.
Specify a Number for the number of milliseconds to... Defaults to false. Specify true to defer trigger start by 1000 ms.
Specify a Number for the number of milliseconds to defer trigger start. | DragTracker | |
listeners : Object A config object containing one or more event handlers to be added to this
object during initialization. This should ... A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the addListener example for attaching multiple handlers at once. DOM events from ExtJs Components While some ExtJs Component classes export selected DOM events (e.g. "click", "mouseover" etc), this
is usually only done when extra value can be added. For example the DataView's
| Observable | |
tolerance : Number Number of pixels the drag target must be moved before dragging is considered to have started. Defaults to 5. | DragTracker |
Method | Defined By | |
---|---|---|
addEvents( Object|String o , string Optional. )
:
voidAdds the specified events to the list of events which this Observable may fire. Adds the specified events to the list of events which this Observable may fire. Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
:
voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
enableBubble( String/Array events )
:
voidEnables events fired by this Observable to bubble up an owner hierarchy by calling
this.getBubbleTarget() if present.... Enables events fired by this Observable to bubble up an owner hierarchy by calling
This is commonly used by Ext.Components to bubble events to owner Containers. See Ext.Component.getBubbleTarget. The default implementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to access the required target more quickly. Example:
Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
:
BooleanFires the specified event with the passed parameters (minus the event name).
An event may be set to bubble up an Obse... Fires the specified event with the passed parameters (minus the event name). An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by calling enableBubble. Parameters:
| Observable | |
getDragTarget()
:
Ext.Element Returns the drag target Returns the drag target Parameters:
| DragTracker | |
hasListener( String eventName )
:
BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event Parameters:
| Observable | |
on( String eventName , Function handler , [Object scope ], [Object options ] )
:
voidAppends an event handler to this object (shorthand for addListener.) Appends an event handler to this object (shorthand for addListener.) Parameters:
| Observable | |
onBeforeStart( Ext.EventObject e )
:
voidTemplate method which should be overridden by each DragTracker instance. Called when the user first clicks and
holds ... Template method which should be overridden by each DragTracker instance. Called when the user first clicks and
holds the mouse button down. Return false to disallow the drag Parameters:
| DragTracker | |
onDrag( Ext.EventObject e )
:
voidTemplate method which should be overridden by each DragTracker instance. Called whenever a drag has been detected. Template method which should be overridden by each DragTracker instance. Called whenever a drag has been detected. Parameters:
| DragTracker | |
onEnd( Ext.EventObject e )
:
voidTemplate method which should be overridden by each DragTracker instance. Called when a drag operation has been comple... Template method which should be overridden by each DragTracker instance. Called when a drag operation has been completed
(e.g. the user clicked and held the mouse down, dragged the element and then released the mouse button) Parameters:
| DragTracker | |
onStart( Array xy )
:
voidTemplate method which should be overridden by each DragTracker instance. Called when a drag operation starts
(e.g. th... Template method which should be overridden by each DragTracker instance. Called when a drag operation starts
(e.g. the user has moved the tracked element beyond the specified tolerance) Parameters:
| DragTracker | |
purgeListeners()
:
void Removes all listeners for this object Removes all listeners for this object Parameters:
| Observable | |
relayEvents( Object o , Array events )
:
voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. Parameters:
| Observable | |
removeListener( String eventName , Function handler , [Object scope ] )
:
voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
resumeEvents()
:
void Resume firing events. (see suspendEvents)
If events were suspended using the queueSuspended parameter, then all
event... Resume firing events. (see suspendEvents)
If events were suspended using the queueSuspended parameter, then all
events fired during event suspension will be sent to any listeners now. Parameters:
| Observable | |
suspendEvents( Boolean queueSuspended )
:
voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:
| Observable | |
un( String eventName , Function handler , [Object scope ] )
:
voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable |
Event | Defined By | |
---|---|---|
drag :
( Object this , Object e )
Listeners will be called with the following arguments:
| DragTracker | |
dragend :
( Object this , Object e )
Listeners will be called with the following arguments:
| DragTracker | |
dragstart :
( Object this , Object startXY )
Listeners will be called with the following arguments:
| DragTracker | |
mousedown :
( Object this , Object e )
Listeners will be called with the following arguments:
| DragTracker | |
mousemove :
( Object this , Object e )
Listeners will be called with the following arguments:
| DragTracker | |
mouseup :
( Object this , Object e )
Listeners will be called with the following arguments:
| DragTracker |