Lines Matching +refs:val +refs:files
79 * Signals that files have been selected.
86 * <dd>An `Array` of files selected by the user, encapsulated
93 * Signals that an upload of multiple files has been started.
337 var newfiles = event._event.dataTransfer.files,
413 * then selected files are appended to the existing list; otherwise, the list is
414 * cleared and populated with the newly selected files.
421 var newfiles = ev.target.getDOMNode().files,
512 * Starts the upload of all files on the file list, using an automated queue.
515 * @param url {String} The URL to upload the files to.
524 * Starts the upload of the files specified in the first argument, using an automated queue.
527 * @param files {Array} The list of files to upload.
528 * @param url {String} The URL to upload the files to.
532 uploadThese : function (files, url, postvars) {
540 fileList: files,
613 * A Boolean indicating whether newly selected files should be appended
651 * The node that serves as the drop target for files.
659 setter: function (val) {
660 return Y.one(val);
691 validator: function (val, name) {
692 return (val === UploaderQueue.CONTINUE || val === UploaderQueue.STOP || val === UploaderQueue.RESTART_ASAP || val === UploaderQueue.RESTART_AFTER); }
708 * The array of files to be uploaded. All elements in the array
773 * The number of files that can be uploaded
784 validator: function (val, name) {
785 return (val >= 1 && val <= 5);