Lines Matching +refs:val +refs:files
81 * Signals that files have been selected.
88 * <dd>An `Array` of files selected by the user, encapsulated
95 * Signals that an upload of multiple files has been started.
339 var newfiles = event._event.dataTransfer.files,
415 * then selected files are appended to the existing list; otherwise, the list is
416 * cleared and populated with the newly selected files.
423 var newfiles = ev.target.getDOMNode().files,
514 * Starts the upload of all files on the file list, using an automated queue.
517 * @param url {String} The URL to upload the files to.
526 * Starts the upload of the files specified in the first argument, using an automated queue.
529 * @param files {Array} The list of files to upload.
530 * @param url {String} The URL to upload the files to.
534 uploadThese : function (files, url, postvars) {
542 fileList: files,
615 * A Boolean indicating whether newly selected files should be appended
653 * The node that serves as the drop target for files.
661 setter: function (val) {
662 return Y.one(val);
693 validator: function (val, name) {
694 return (val === UploaderQueue.CONTINUE || val === UploaderQueue.STOP || val === UploaderQueue.RESTART_ASAP || val === UploaderQueue.RESTART_AFTER); }
710 * The array of files to be uploaded. All elements in the array
775 * The number of files that can be uploaded
786 validator: function (val, name) {
787 return (val >= 1 && val <= 5);