Lines Matching refs:event

42     * Stored reference to the click event binding of the `Select Files`
81 * @event fileselect
82 * @param event {Event} The event object for the `fileselect` with the
95 * @event uploadstart
96 * @param event {Event} The event object for the `uploadstart`.
103 * @event fileuploadstart
104 * @param event {Event} The event object for the `fileuploadstart` with the
108 * <dd>A reference to the Y.File that dispatched the event.</dd>
110 * <dd>The original event dispatched by Y.File.</dd>
118 * @event uploadprogress
119 * @param event {Event} The event object for the `uploadprogress` with the
123 * <dd>The pointer to the instance of `Y.File` that dispatched the event.</dd>
131 * <dd>The original event dispatched by the HTML5 uploader</dd>
139 * @event totaluploadprogress
140 * @param event {Event} The event object for the `totaluploadprogress` with the
156 * @event uploadcomplete
157 * @param event {Event} The event object for the `uploadcomplete` with the
163 * <dd>The original event fired by the SWF Uploader</dd>
173 * @event alluploadscomplete
174 * @param event {Event} The event object for the `alluploadscomplete`.
181 * @event uploaderror
182 * @param event {Event} The event object for the `uploaderror` with the
186 * <dd>The original error event fired by the HTML5 Uploader. </dd>
200 * @event dragenter
201 * @param event {Event} The event object for the `dragenter`.
208 * @event dragover
209 * @param event {Event} The event object for the `dragover`.
216 * @event dragleave
217 * @param event {Event} The event object for the `dragleave`.
224 * @event drop
225 * @param event {Event} The event object for the `drop`.
282 _bindDropArea : function (event) {
283 var ev = event || {prevVal: null};
320 _ddEventHandler : function (event) {
322 event.stopPropagation();
323 event.preventDefault();
325 switch (event.type) {
337 var newfiles = event._event.dataTransfer.files,
417 * @param ev {Event} The file selection event received from the uploader.
442 * @param event The event dispatched during the upload process.
445 _uploadEventHandler : function (event) {
447 switch (event.type) {
449 this.fire("fileuploadstart", event);
452 this.fire("uploadprogress", event);
455 this.fire("totaluploadprogress", event);
458 this.fire("uploadcomplete", event);
462 this.fire("alluploadscomplete", event);
465 this.fire("uploaderror", event);