X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Registry.html diff --git a/docs/source/Registry.html b/docs/source/Registry.html index 293f2dd8..fd534be0 100644 --- a/docs/source/Registry.html +++ b/docs/source/Registry.html @@ -1,4 +1,21 @@ -
/**
+
+
+
+
+ The source code
+
+
+
+
+
+
+ /**
* @class Ext.dd.Registry
* Provides easy access to all drag drop components that are registered on a page. Items can be retrieved either
* directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
@@ -24,7 +41,7 @@ Ext.define('Ext.dd.Registry', {
return id;
},
- /**
+ /**
* Resgister a drag drop element
* @param {String/HTMLElement} element The id or DOM node to register
* @param {Object} data (optional) An custom data object that will be passed between the elements that are involved
@@ -58,7 +75,7 @@ isHandle True if the element passed in triggers<br />
}
},
- /**
+ /**
* Unregister a drag drop element
* @param {String/HTMLElement} element The id or DOM node to unregister
*/
@@ -76,7 +93,7 @@ isHandle True if the element passed in triggers<br />
}
},
- /**
+ /**
* Returns the handle registered for a DOM Node by id
* @param {String/HTMLElement} id The DOM node or id to look up
* @return {Object} handle The custom handle data
@@ -88,7 +105,7 @@ isHandle True if the element passed in triggers<br />
return this.handles[id];
},
- /**
+ /**
* Returns the handle that is registered for the DOM node that is the target of the event
* @param {Event} e The event
* @return {Object} handle The custom handle data
@@ -98,7 +115,7 @@ isHandle True if the element passed in triggers<br />
return t ? this.handles[t.id] : null;
},
- /**
+ /**
* Returns a custom data object that is registered for a DOM node by id
* @param {String/HTMLElement} id The DOM node or id to look up
* @return {Object} data The custom data
@@ -110,7 +127,7 @@ isHandle True if the element passed in triggers<br />
return this.elements[id];
},
- /**
+ /**
* Returns a custom data object that is registered for the DOM node that is the target of the event
* @param {Event} e The event
* @return {Object} data The custom data
@@ -119,4 +136,6 @@ isHandle True if the element passed in triggers<br />
var t = e.getTarget();
return t ? this.elements[t.id] || this.handles[t.id] : null;
}
-});
\ No newline at end of file
+});
+
+