Lines Matching refs:upload
8 * This module uses Flash player transport to upload files to the server, with support for
207 * Fires when a specific file's upload is cancelled.
213 * <dd>The id of the file whose upload has been cancelled.</dd>
220 * If the server has sent a response to the file upload, this event is
236 * Provides error information if an error has occurred during the upload.
242 * <dd>The id of the file for which the upload error has occurred.</dd>
251 * Provides progress information on a specific file upload.
268 * Announces that the upload has been started for a specific file.
274 * <dd>The id of the file whose upload has been started.</dd>
282 * Removes a specific file from the upload queue.
295 * Clears the upload queue.
306 * Starts the upload of a specific file.
308 * @method upload
310 * @param url {String} The URL to upload the file to.
312 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
317 upload : function (fileID /*String*/, url /*String*/, method /*String*/, postVars /*Object*/, postFileVarName /*String*/) {
322 return this.uploaderswf.callSWF("upload", [fileID, url, method, postVars, postFileVarName]);
328 * Starts the upload of a set of files, as specified in the first argument.
329 * The upload queue is managed automatically.
333 * @param url {String} The URL to upload the files to.
335 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
344 * Starts the upload of the files in the upload queue.
345 * The upload queue is managed automatically.
348 * @param url {String} The URL to upload the files to.
350 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
359 * Cancels the upload of a specific file, if currently in progress.
362 * @param fileID {String} (optional) The ID of the file whose upload should be cancelled. If no ID is specified, all uploads are cancelled.