X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.dd.DragDrop.html?ds=inline diff --git a/docs/output/Ext.dd.DragDrop.html b/docs/output/Ext.dd.DragDrop.html deleted file mode 100644 index e2b1bbb1..00000000 --- a/docs/output/Ext.dd.DragDrop.html +++ /dev/null @@ -1,1214 +0,0 @@ -
Package: | Ext.dd |
Defined In: | DDCore.js |
Class: | DragDrop |
Subclasses: | DD, DDTarget |
Extends: | Object |
dd = new Ext.dd.DragDrop("div1", "group1");-Since none of the event handlers have been implemented, nothing would -actually happen if you were to run the code above. Normally you would -override this class or one of the default implementations, but you can -also override the methods you want on an instance of the class... -
dd.onDragDrop = function(e, id) { - alert("dd was dropped on " + id); -}
Method | -Defined By | -|
---|---|---|
- |
-
- DragDrop( String id , String sGroup , object config )
-
-
-
-
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- addInvalidHandleClass( string cssClass ) : void
-
- Lets 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- addInvalidHandleId( string id ) : void
-
- Lets 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- addInvalidHandleType( string tagName ) : void
-
- Allows 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.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- addToGroup( sGroup {string} ) : void
-
- Add 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
-instances belong to at least one group, and can belong to as many
-groups as needed.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- applyConfig() : void
-
- Applies the configuration parameters that were passed into the constructor.
-This is supposed to happen at each level ...
-
- Applies the configuration parameters that were passed into the constructor.
-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.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- clearConstraints() : void
-
- Clears 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.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- clearTicks() : void
-
- Clears any tick interval defined for this instance
-
- Clears any tick interval defined for this instance
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- constrainTo( Mixed constrainTo , [Object/Number pad ], [Boolean inContent ] ) : void
-
- Initializes the drag drop object's constraints to restrict movement to a certain element.
-Usage:
- var dd = new Ext.d...
-
- Initializes the drag drop object's constraints to restrict movement to a certain element.
-Usage:
-
-
-Or you can initalize it using the Ext.Element object:
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- endDrag( Event e ) : void
-
- Fired when we are done dragging the object
-
- Fired when we are done dragging the object
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- getDragEl() : HTMLElement
-
- Returns 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:
-
-
|
- DragDrop | -
- |
-
- getEl() : HTMLElement
-
- Returns a reference to the linked element
-
- Returns a reference to the linked element
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- init( id the , String sGroup , object config ) : void
-
- Sets up the DragDrop object. Must be called in the constructor of any
-Ext.dd.DragDrop subclass
-
- Sets up the DragDrop object. Must be called in the constructor of any
-Ext.dd.DragDrop subclass
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- initTarget( id the , String sGroup , object config ) : void
-
- Initializes Targeting functionality only... the object does not
-get a mousedown handler.
-
- Initializes Targeting functionality only... the object does not
-get a mousedown handler.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- isLocked() : 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.)
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- isValidHandleChild( HTMLElement node ) : boolean
-
- Checks 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- lock() : void
-
- Lock this instance
-
- Lock this instance
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onAvailable() : void
-
- Override the onAvailable method to do what is needed after the initial
-position was determined.
-
- Override the onAvailable method to do what is needed after the initial
-position was determined.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onDrag( Event e ) : void
-
- Abstract method called during the onMouseMove event while dragging an
-object.
-
- Abstract method called during the onMouseMove event while dragging an
-object.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onDragDrop( Event e , String|DragDrop[] id ) : void
-
- Abstract method called when this item is dropped on another DragDrop
-obj
-
- Abstract method called when this item is dropped on another DragDrop
-obj
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onDragEnter( Event e , String|DragDrop[] id ) : void
-
- Abstract 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onDragOut( Event e , String|DragDrop[] id ) : void
-
- Abstract method called when we are no longer hovering over an element
-
- Abstract method called when we are no longer hovering over an element
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onDragOver( Event e , String|DragDrop[] id ) : void
-
- Abstract method called when this element is hovering over another
-DragDrop obj
-
- Abstract method called when this element is hovering over another
-DragDrop obj
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onInvalidDrop( Event e ) : void
-
- Abstract 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:
-
-
|
- DragDrop | -
- |
-
- onMouseDown( Event e ) : void
-
- Event handler that fires when a drag/drop obj gets a mousedown
-
- Event handler that fires when a drag/drop obj gets a mousedown
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- onMouseUp( Event e ) : void
-
- Event handler that fires when a drag/drop obj gets a mouseup
-
- Event handler that fires when a drag/drop obj gets a mouseup
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- removeFromGroup( string sGroup ) : void
-
- Remove's this instance from the supplied interaction group
-
- Remove's this instance from the supplied interaction group
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- removeInvalidHandleClass( string cssClass ) : void
-
- Unsets an invalid css class
-
- Unsets an invalid css class
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- removeInvalidHandleId( string id ) : void
-
- Unsets an invalid handle id
-
- Unsets an invalid handle id
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- removeInvalidHandleType( string tagName ) : void
-
- Unsets an excluded tag name set by addInvalidHandleType
-
- Unsets an excluded tag name set by addInvalidHandleType
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- resetConstraints( boolean maintainOffset ) : void
-
- resetConstraints must be called if you manually reposition a dd element.
-
- resetConstraints must be called if you manually reposition a dd element.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- setDragElId( id {string} ) : void
-
- Allows 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- setHandleElId( id {string} ) : void
-
- Allows 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.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- setInitialPosition( int diffX , int diffY ) : void
-
- Stores the initial placement of the linked element.
-
- Stores the initial placement of the linked element.
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- setOuterHandleElId( id the ) : void
-
- Allows 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
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- setPadding( int iTop , int iRight , int iBot , int iLeft ) : void
-
- Configures 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:
-
-
|
- DragDrop | -
- |
-
- setXConstraint( int iLeft , int iRight , int iTickSize ) : void
-
- By 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:
-
-
|
- DragDrop | -
- |
-
- setYConstraint( int iUp , int iDown , int iTickSize ) : void
-
- By 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:
-
-
|
- DragDrop | -
- |
-
- startDrag( int X , int Y ) : void
-
- Abstract 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:
-
-
|
- DragDrop | -
- |
-
- toString() : string
-
- toString method
-
- toString method
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- unlock() : void
-
- Unlock this instace
-
- Unlock this instace
-
- Parameters:
-
-
|
- DragDrop | -
- |
-
- unreg() : void
-
- Remove all drag and drop hooks for this element
-
- Remove all drag and drop hooks for this element
-
- Parameters:
-
-
|
- DragDrop | -