Lines Matching +refs:val +refs:files
115 * Signals that files have been selected.
122 * <dd>An `Array` of files selected by the user, encapsulated
129 * Signals that an upload of multiple files has been started.
501 * then selected files are appended to the existing list; otherwise, the list is
502 * cleared and populated with the newly selected files.
611 * Starts the upload of all files on the file list, using an automated queue.
614 * @param url {String} The URL to upload the files to.
623 * Starts the upload of the files specified in the first argument, using an automated queue.
626 * @param files {Array} The list of files to upload.
627 * @param url {String} The URL to upload the files to.
631 uploadThese : function (files, url, postvars) {
639 fileList: files,
714 * A Boolean indicating whether newly selected files should be appended
784 validator: function (val, name) {
785 return (val === UploaderQueue.CONTINUE || val === UploaderQueue.STOP || val === UploaderQueue.RESTART_ASAP || val === UploaderQueue.RESTART_AFTER);
818 * The array of files to be uploaded. All elements in the array
882 * The number of files that can be uploaded
893 validator: function (val, name) {
894 return (val >= 2 && val <= 5);