The DataTransfer object is used to hold the data that is being during a drag and drop operation. It may hold one or more data each of one or more data types. For more information about drag drop, see HTML Drag and Drop API.
The DataTransfer object is used to hold the data that is being during a drag and drop operation. It may hold one or more data each of one or more data types. For more information about drag drop, see HTML Drag and Drop API.
(add-element this el)
Method.
[Non Standard]
The DataTransfer.addElement() method sets the drag source to given element. This element will be the element to which drag dragend events are fired, and not the defaut target (the node was dragged).
void dataTransfer.addElement(el);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/addElement
Method. [Non Standard] The DataTransfer.addElement() method sets the drag source to given element. This element will be the element to which drag dragend events are fired, and not the defaut target (the node was dragged). `void dataTransfer.addElement(el);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/addElement`
(clear-data this & args)
Method.
The DataTransfer.clearData() method removes the drag operation's data` for the given type. If data for the given type does not this method does nothing.
DataTransfer.clearData([format]);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/clearData
Method. The DataTransfer.clearData() method removes the drag operation's data` for the given type. If data for the given type does not this method does nothing. `DataTransfer.clearData([format]);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/clearData`
(drop-effect this)
Property.
The DataTransfer.dropEffect property controls the feedback (typically the user is given during a drag and drop operation. It will affect cursor is displayed while dragging. For example, when the user over a target drop element, the browser's cursor may indicate type of operation will occur.
dataTransfer.dropEffect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/dropEffect
Property. The DataTransfer.dropEffect property controls the feedback (typically the user is given during a drag and drop operation. It will affect cursor is displayed while dragging. For example, when the user over a target drop element, the browser's cursor may indicate type of operation will occur. `dataTransfer.dropEffect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/dropEffect`
(effect-allowed this)
Property.
The DataTransfer.effectAllowed property specifies the effect is allowed for a drag operation. The copy operation is used to that the data being dragged will be copied from its present location the drop location. The move operation is used to indicate that data being dragged will be moved, and the link operation is used indicate that some form of relationship or connection will be between the source and drop locations.
dataTransfer.effectAllowed;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/effectAllowed
Property. The DataTransfer.effectAllowed property specifies the effect is allowed for a drag operation. The copy operation is used to that the data being dragged will be copied from its present location the drop location. The move operation is used to indicate that data being dragged will be moved, and the link operation is used indicate that some form of relationship or connection will be between the source and drop locations. `dataTransfer.effectAllowed;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/effectAllowed`
(files this)
Property.
The DataTransfer.files property is a list of the files
in the
operation. If the operation includes no files, the list is empty.
dataTransfer.files;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/files
Property. The DataTransfer.files property is a `list of the files` in the operation. If the operation includes no files, the list is empty. `dataTransfer.files;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/files`
(get-data this format)
Method.
The DataTransfer.getData() method retrieves drag data (as a web.dom.DOMString
)
the specified type. If the drag operation does not include data,
method returns an empty string.
dataTransfer.getData(format);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/getData
Method. The DataTransfer.getData() method retrieves drag data (as a `web.dom.DOMString`) the specified type. If the drag operation does not include data, method returns an empty string. `dataTransfer.getData(format);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/getData`
(items this)
Property.
[Read Only]
The read-only web.drag.DataTransfer
property items property
a list
of the data transfer items
in a drag operation. The
includes one item for each item in the operation and if the operation
no items, the list is empty.
itemList = dataTransfer.items;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/items
Property. [Read Only] The read-only `web.drag.DataTransfer` property items property a `list` of the `data transfer items` in a drag operation. The includes one item for each item in the operation and if the operation no items, the list is empty. `itemList = dataTransfer.items;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/items`
(moz-clear-data-at this & args)
Method.
[Non Standard]
The DataTransfer.mozClearDataAt() method removes the data associated the given format for an item at the specified index. The index be in the range from zero to the number of items minus one.
void dataTransfer.mozClearDataAt([type], index);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozClearDataAt
Method. [Non Standard] The DataTransfer.mozClearDataAt() method removes the data associated the given format for an item at the specified index. The index be in the range from zero to the number of items minus one. `void dataTransfer.mozClearDataAt([type], index);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozClearDataAt`
(moz-cursor this)
Property.
[Non Standard]
The DataTransfer.mozCursor property returns or sets the drag state. This is primarily used to control the cursor during tab
dataTransfer.mozCursor;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozCursor
Property. [Non Standard] The DataTransfer.mozCursor property returns or sets the drag state. This is primarily used to control the cursor during tab `dataTransfer.mozCursor;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozCursor`
(moz-get-data-at this & args)
Method.
[Non Standard]
The DataTransfer.mozGetDataAt() method is used to retrieve an
in the drag event's data transfer
object, based on a given
and index. This method returns null if the specified item does
exist or if the index is not in the range from zero to the number
items minus one.
nsIVariant dataTransfer.mozGetDataAt([type], index);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozGetDataAt
Method. [Non Standard] The DataTransfer.mozGetDataAt() method is used to retrieve an in the drag event's `data transfer` object, based on a given and index. This method returns null if the specified item does exist or if the index is not in the range from zero to the number items minus one. `nsIVariant dataTransfer.mozGetDataAt([type], index);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozGetDataAt`
(moz-item-count this)
Property.
[Read Only] [Non Standard]
The DataTransfer.mozItemCount property returns the number of being dragged. This can be used, for example, to get the number files being dragged.
dataTransfer.mozItemCount;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozItemCount
Property. [Read Only] [Non Standard] The DataTransfer.mozItemCount property returns the number of being dragged. This can be used, for example, to get the number files being dragged. `dataTransfer.mozItemCount;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozItemCount`
(moz-set-data-at this & args)
Method.
[Non Standard]
The DataTransfer.mozSetDataAt() method is used to add data to
specific index in the drag event's data transfer
object.
void dataTransfer.mozSetDataAt([type], data, index);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozSetDataAt
Method. [Non Standard] The DataTransfer.mozSetDataAt() method is used to add data to specific index in the drag event's `data transfer` object. `void dataTransfer.mozSetDataAt([type], data, index);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozSetDataAt`
(moz-source-node this)
Property.
[Read Only] [Non Standard]
The DataTransfer.mozSourceNode property is used to determine
web.Node
over which the mouse cursor was located when the the
operation was initiated (for example, when a <button>
was clicked).
external drags or if the calling function cannot reach the node,
is returned.
dataTransfer.mozSourceNode;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozSourceNode
Property. [Read Only] [Non Standard] The DataTransfer.mozSourceNode property is used to determine `web.Node` over which the mouse cursor was located when the the operation was initiated (for example, when a `<button>` was clicked). external drags or if the calling function cannot reach the node, is returned. `dataTransfer.mozSourceNode;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozSourceNode`
(moz-types-at this index)
Method.
[Non Standard]
The DataTransfer.mozTypesAt() method returns a list of the format that are stored for an item at the specified index. If the index not in the range from 0 to the number of items minus one, an string list is returned.
nsIVariant dataTransfer.mozTypesAt(index);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozTypesAt
Method. [Non Standard] The DataTransfer.mozTypesAt() method returns a list of the format that are stored for an item at the specified index. If the index not in the range from 0 to the number of items minus one, an string list is returned. `nsIVariant dataTransfer.mozTypesAt(index);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozTypesAt`
(moz-user-cancelled this)
Property.
[Read Only] [Non Standard]
The DataTransfer.mozUserCancelled property is used in the dragend handler to determine if the user canceled the drag or not. If user canceled the event, the property returns true and returns otherwise. This property only applies to the dragend event.
dataTransfer.mozUserCancelled;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozUserCancelled
Property. [Read Only] [Non Standard] The DataTransfer.mozUserCancelled property is used in the dragend handler to determine if the user canceled the drag or not. If user canceled the event, the property returns true and returns otherwise. This property only applies to the dragend event. `dataTransfer.mozUserCancelled;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozUserCancelled`
(set-data this format data)
Method.
The DataTransfer.setData() method sets the drag operation's drag to the specified data and type. If data for the given type does exist, it is added at the end of the drag data store, such that last item in the
typeslist will be the new type. If data for given type already exists, the existing data is replaced in the position. That is, the order of the
types` list is not changed
replacing data of the same type.
void dataTransfer.setData(format, data);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/setData
Method. The DataTransfer.setData() method sets the drag operation's `drag to the specified data and type. If data for the given type does exist, it is added at the end of the drag data store, such that last item in the `types` list will be the new type. If data for given type already exists, the existing data is replaced in the position. That is, the order of the `types` list is not changed replacing data of the same type. `void dataTransfer.setData(format, data);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/setData`
(set-drag-image this img x-offset y-offset)
Method.
When a drag occurs, a translucent image is generated from the
target (the element the dragstart event is fired at), and follows
mouse pointer during the drag. This image is created automatically,
you do not need to create it yourself. However, if a custom image
desired, the DataTransfer.setDragImage() method can be used to
the custom image to be used. The image will typically be an <image>
but it can also be a <canvas>
or any other image element.
void dataTransfer.setDragImage(img, xOffset, yOffset);
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/setDragImage
Method. When a drag occurs, a translucent image is generated from the target (the element the dragstart event is fired at), and follows mouse pointer during the drag. This image is created automatically, you do not need to create it yourself. However, if a custom image desired, the DataTransfer.setDragImage() method can be used to the custom image to be used. The image will typically be an `<image>` but it can also be a `<canvas>` or any other image element. `void dataTransfer.setDragImage(img, xOffset, yOffset);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/setDragImage`
(set-drop-effect! this val)
Property.
The DataTransfer.dropEffect property controls the feedback (typically the user is given during a drag and drop operation. It will affect cursor is displayed while dragging. For example, when the user over a target drop element, the browser's cursor may indicate type of operation will occur.
dataTransfer.dropEffect;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/dropEffect
Property. The DataTransfer.dropEffect property controls the feedback (typically the user is given during a drag and drop operation. It will affect cursor is displayed while dragging. For example, when the user over a target drop element, the browser's cursor may indicate type of operation will occur. `dataTransfer.dropEffect;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/dropEffect`
(set-effect-allowed! this val)
Property.
The DataTransfer.effectAllowed property specifies the effect is allowed for a drag operation. The copy operation is used to that the data being dragged will be copied from its present location the drop location. The move operation is used to indicate that data being dragged will be moved, and the link operation is used indicate that some form of relationship or connection will be between the source and drop locations.
dataTransfer.effectAllowed;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/effectAllowed
Property. The DataTransfer.effectAllowed property specifies the effect is allowed for a drag operation. The copy operation is used to that the data being dragged will be copied from its present location the drop location. The move operation is used to indicate that data being dragged will be moved, and the link operation is used indicate that some form of relationship or connection will be between the source and drop locations. `dataTransfer.effectAllowed;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/effectAllowed`
(set-files! this val)
Property.
The DataTransfer.files property is a list of the files
in the
operation. If the operation includes no files, the list is empty.
dataTransfer.files;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/files
Property. The DataTransfer.files property is a `list of the files` in the operation. If the operation includes no files, the list is empty. `dataTransfer.files;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/files`
(set-moz-cursor! this val)
Property.
[Non Standard]
The DataTransfer.mozCursor property returns or sets the drag state. This is primarily used to control the cursor during tab
dataTransfer.mozCursor;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozCursor
Property. [Non Standard] The DataTransfer.mozCursor property returns or sets the drag state. This is primarily used to control the cursor during tab `dataTransfer.mozCursor;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/mozCursor`
(types this)
Property.
[Read Only]
The DataTransfer.types read-only property returns an array of
drag data formats (as strings
) that were set in the dragstart
The order of the formats is the same order as the data included
the drag operation.
dataTransfer.types;
See also: https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types
Property. [Read Only] The DataTransfer.types read-only property returns an array of drag data formats (as `strings`) that were set in the dragstart The order of the formats is the same order as the data included the drag operation. `dataTransfer.types;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/types`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close