Lines Matching refs:fileID
150 fileList[fileID] = {id: fileID, name: fileName, cDate: fileCDate, mDate: fileMDate, size: fileSize}</dd>
285 * @param fileID {String} The ID of the file to be removed
287 * fileList[fileID] = {id: fileID, name: fileName, cDate: fileCDate, mDate: fileMDate, size: fileSize}
290 removeFile : function (fileID /*String*/) {
291 return this.uploaderswf.callSWF("removeFile", [fileID]);
309 * @param fileID {String} The ID of the file to be uploaded.
317 upload : function (fileID /*String*/, url /*String*/, method /*String*/, postVars /*Object*/, postFileVarName /*String*/) {
318 if (Y.Lang.isArray(fileID)) {
319 return this.uploaderswf.callSWF("uploadThese", [fileID, url, method, postVars, postFileVarName]);
321 else if (Y.Lang.isString(fileID)) {
322 return this.uploaderswf.callSWF("upload", [fileID, url, method, postVars, postFileVarName]);
362 * @param fileID {String} (optional) The ID of the file whose upload should be cancelled. If no ID is specified, all uploads are cancelled.
365 cancel : function (fileID /*String*/) {
366 return this.uploaderswf.callSWF("cancel", [fileID]);