Lines Matching +refs:val +refs:files
117 * Signals that files have been selected.
124 * <dd>An `Array` of files selected by the user, encapsulated
131 * Signals that an upload of multiple files has been started.
503 * then selected files are appended to the existing list; otherwise, the list is
504 * cleared and populated with the newly selected files.
613 * Starts the upload of all files on the file list, using an automated queue.
616 * @param url {String} The URL to upload the files to.
625 * Starts the upload of the files specified in the first argument, using an automated queue.
628 * @param files {Array} The list of files to upload.
629 * @param url {String} The URL to upload the files to.
633 uploadThese : function (files, url, postvars) {
641 fileList: files,
716 * A Boolean indicating whether newly selected files should be appended
786 validator: function (val, name) {
787 return (val === UploaderQueue.CONTINUE || val === UploaderQueue.STOP || val === UploaderQueue.RESTART_ASAP || val === UploaderQueue.RESTART_AFTER);
820 * The array of files to be uploaded. All elements in the array
884 * The number of files that can be uploaded
895 validator: function (val, name) {
896 return (val >= 2 && val <= 5);