|
| TreeDropZone( String/HTMLElement/Element tree , Object config )
- Parameters:tree : String/HTMLElement/Elementconfig : Object Returns: | TreeDropZone |
| addToGroup( sGroup {string} )
+ Parameters:tree : String/HTMLElement/Elementconfig : Object Returns: | TreeDropZone |
| addInvalidHandleClass( string cssClass )
+ :
+ voidLets you specify a css class of elements that will not initiate a drag Lets you specify a css class of elements that will not initiate a drag | DragDrop |
| addInvalidHandleId( string id )
+ :
+ voidLets you to specify an element id for a child of a drag handle
+that should not initiate a drag Lets you to specify an element id for a child of a drag handle
+that should not initiate a drag | DragDrop |
| addInvalidHandleType( string tagName )
+ :
+ voidAllows you to specify a tag name that should not start a drag operation
+when clicked. This is designed to facilitate... Allows you to specify a tag name that should not start a drag operation
+when clicked. This is designed to facilitate embedding links within a
+drag handle that do something other than start the drag. | DragDrop |
| addToGroup( sGroup {string} )
:
voidAdd this instance to a group of related drag/drop objects. All
instances belong to at least one group, and can belon... Add this instance to a group of related drag/drop objects. All
@@ -62,7 +77,13 @@ This is supposed to happen at each level ... Applies the
This is supposed to happen at each level through the inheritance chain. So
a DDProxy implentation will execute apply config on DDProxy, DD, and
DragDrop in order to get all of the parameters that are available in
-each object. | DragDrop |
| constrainTo( Mixed constrainTo , [Object/Number pad ], [Boolean inContent ] )
+each object. | DragDrop |
| clearConstraints()
+ :
+ voidClears any constraints applied to this instance. Also clears ticks
+since they can't exist independent of a constrain... Clears any constraints applied to this instance. Also clears ticks
+since they can't exist independent of a constraint at this time. | DragDrop |
| clearTicks()
+ :
+ voidClears any tick interval defined for this instance Clears any tick interval defined for this instance | DragDrop |
| constrainTo( Mixed constrainTo , [Object/Number pad ], [Boolean inContent ] )
:
void | DragDrop |
| getEl()
+an object containing the sides to pad. For example: {right:10, bottom:10}inContent : Boolean(optional) Constrain the draggable in the content box of the element (inside padding and borders) Returns: | DragDrop |
| endDrag( Event e )
+ :
+ voidFired when we are done dragging the object Fired when we are done dragging the object Parameters:e : Eventthe mouseup event Returns: | DragDrop |
| getDragEl()
+ :
+ HTMLElementReturns a reference to the actual element to drag. By default this is
+the same as the html element, but it can be as... Returns a reference to the actual element to drag. By default this is
+the same as the html element, but it can be assigned to another
+element. An example of this can be found in Ext.dd.DDProxy Parameters:Returns:HTMLElement the html element
| DragDrop |
| getEl()
:
HTMLElementReturns a reference to the linked element Returns a reference to the linked element Parameters:Returns:HTMLElement the html element
| DragDrop |
| getTargetFromEvent( Event e )
:
@@ -100,7 +128,9 @@ get a mousedown handler.Parameters:
boolean Returns true if this instance is locked, or the drag drop mgr is locked
(meaning that all drag/drop is disabled on th... Returns true if this instance is locked, or the drag drop mgr is locked
(meaning that all drag/drop is disabled on the page.) | DragDrop |
| lock()
+false | DragDrop |
| isValidHandleChild( HTMLElement node )
+ :
+ booleanChecks the tag exclusion list to see if this click should be ignored Checks the tag exclusion list to see if this click should be ignored | DragDrop |
| lock()
:
void | DragDrop |
| notifyDrop( Ext.dd.DragSource source , Event e , Object data )
:
@@ -145,7 +175,41 @@ be able to accept drops. It should return true when valid so that the drag sour
but not over any of its regis...Called while the DropZone determines that a Ext.dd.DragSource is being dragged over it,
but not over any of its registered drop nodes. The default implementation returns this.dropNotAllowed, so
it should be overridden to provide the proper feedback if necessary. | DropZone |
| onNodeDrop( Object nodeData , Ext.dd.DragSource source , Event e , Object data )
+underlying {@link Ext.dd.StatusProxy} can be updated | DropZone |
| onDrag( Event e )
+ :
+ voidAbstract method called during the onMouseMove event while dragging an
+object. Abstract method called during the onMouseMove event while dragging an
+object. Parameters:e : Eventthe mousemove event Returns: | DragDrop |
| onDragDrop( Event e , String|DragDrop[] id )
+ :
+ voidAbstract method called when this item is dropped on another DragDrop
+obj Abstract method called when this item is dropped on another DragDrop
+obj | DragDrop |
| onDragEnter( Event e , String|DragDrop[] id )
+ :
+ voidAbstract method called when this element fist begins hovering over
+another DragDrop obj Abstract method called when this element fist begins hovering over
+another DragDrop obj | DragDrop |
| onDragOut( Event e , String|DragDrop[] id )
+ :
+ voidAbstract method called when we are no longer hovering over an element Abstract method called when we are no longer hovering over an element | DragDrop |
| onDragOver( Event e , String|DragDrop[] id )
+ :
+ voidAbstract method called when this element is hovering over another
+DragDrop obj Abstract method called when this element is hovering over another
+DragDrop obj | DragDrop |
| onInvalidDrop( Event e )
+ :
+ voidAbstract method called when this item is dropped on an area with no
+drop target Abstract method called when this item is dropped on an area with no
+drop target Parameters:e : Eventthe mouseup event Returns: | DragDrop |
| onMouseDown( Event e )
+ :
+ voidEvent handler that fires when a drag/drop obj gets a mousedown Event handler that fires when a drag/drop obj gets a mousedown Parameters:e : Eventthe mousedown event Returns: | DragDrop |
| onMouseUp( Event e )
+ :
+ voidEvent handler that fires when a drag/drop obj gets a mouseup Event handler that fires when a drag/drop obj gets a mouseup Parameters:e : Eventthe mouseup event Returns: | DragDrop |
| onNodeDrop( Object nodeData , Ext.dd.DragSource source , Event e , Object data )
:
BooleanCalled when the DropZone determines that a Ext.dd.DragSource has been dropped onto
the drop node. The default implem... Called when the DropZone determines that a Ext.dd.DragSource has been dropped onto
@@ -174,14 +238,60 @@ overridden to provide the proper feedback. source : Ext.dd.DragSourceThe drag source that was dragged over this drop zone e : EventThe event data : ObjectAn object containing arbitrary data supplied by the drag source Returns: | DropZone |
| removeFromGroup( string sGroup )
:
- voidRemove's this instance from the supplied interaction group Remove's this instance from the supplied interaction group Parameters:sGroup : stringThe group to drop Returns: | DragDrop |
| setPadding( int iTop , int iRight , int iBot , int iLeft )
+ voidRemove's this instance from the supplied interaction group Remove's this instance from the supplied interaction group Parameters:sGroup : stringThe group to drop Returns: | DragDrop |
| removeInvalidHandleClass( string cssClass )
+ :
+ voidUnsets an invalid css class Unsets an invalid css class | DragDrop |
| removeInvalidHandleId( string id )
+ :
+ voidUnsets an invalid handle id Unsets an invalid handle id | DragDrop |
| removeInvalidHandleType( string tagName )
+ :
+ voidUnsets an excluded tag name set by addInvalidHandleType Unsets an excluded tag name set by addInvalidHandleType | DragDrop |
| resetConstraints( boolean maintainOffset )
+ :
+ voidresetConstraints must be called if you manually reposition a dd element. resetConstraints must be called if you manually reposition a dd element. | DragDrop |
| setDragElId( id {string} )
+ :
+ voidAllows you to specify that an element other than the linked element
+will be moved with the cursor during a drag Allows you to specify that an element other than the linked element
+will be moved with the cursor during a drag | DragDrop |
| setHandleElId( id {string} )
+ :
+ voidAllows you to specify a child of the linked element that should be
+used to initiate the drag operation. An example o... Allows you to specify a child of the linked element that should be
+used to initiate the drag operation. An example of this would be if
+you have a content div with text and links. Clicking anywhere in the
+content area would normally start the drag operation. Use this method
+to specify that an element inside of the content div is the element
+that starts the drag operation. | DragDrop |
| setInitPosition( int diffX , int diffY )
+ :
+ voidStores the initial placement of the linked element. Stores the initial placement of the linked element. Parameters:diffX : intthe X offset, default 0 diffY : intthe Y offset, default 0 Returns: | DragDrop |
| setOuterHandleElId( id the )
+ :
+ voidAllows you to set an element outside of the linked element as a drag
+handle Allows you to set an element outside of the linked element as a drag
+handle | DragDrop |
| setPadding( int iTop , int iRight , int iBot , int iLeft )
:
voidConfigures the padding for the target zone in px. Effectively expands
(or reduces) the virtual object size for targe... Configures the padding for the target zone in px. Effectively expands
(or reduces) the virtual object size for targeting calculations.
Supports css-style shorthand; if only one parameter is passed, all sides
will have that padding, and if only two are passed, the top and bottom
-will have the first param, the left and right the second. Parameters:iTop : intTop pad iRight : intRight pad iBot : intBot pad iLeft : intLeft pad Returns: | DragDrop |
| toString()
+will have the first param, the left and right the second.Parameters:iTop : intTop pad iRight : intRight pad iBot : intBot pad iLeft : intLeft pad Returns: | DragDrop |
| setXConstraint( int iLeft , int iRight , int iTickSize )
+ :
+ voidBy default, the element can be dragged any place on the screen. Use
+this method to limit the horizontal travel of th... By default, the element can be dragged any place on the screen. Use
+this method to limit the horizontal travel of the element. Pass in
+0,0 for the parameters if you want to lock the drag to the y axis. Parameters:iLeft : intthe number of pixels the element can move to the left iRight : intthe number of pixels the element can move to the
+right iTickSize : intoptional parameter for specifying that the
+element
+should move iTickSize pixels at a time. Returns: | DragDrop |
| setYConstraint( int iUp , int iDown , int iTickSize )
+ :
+ voidBy default, the element can be dragged any place on the screen. Set
+this to limit the vertical travel of the element... By default, the element can be dragged any place on the screen. Set
+this to limit the vertical travel of the element. Pass in 0,0 for the
+parameters if you want to lock the drag to the x axis. Parameters:iUp : intthe number of pixels the element can move up iDown : intthe number of pixels the element can move down iTickSize : intoptional parameter for specifying that the
+element should move iTickSize pixels at a time. Returns: | DragDrop |
| startDrag( int X , int Y )
+ :
+ voidAbstract method called after a drag/drop object is clicked
+and the drag or mousedown time thresholds have beeen met. Abstract method called after a drag/drop object is clicked
+and the drag or mousedown time thresholds have beeen met. Parameters:X : intclick location Y : intclick location Returns: | DragDrop |
| toString()
:
string | DragDrop |
| unlock()
:
|