Lines Matching refs:fileID
148 fileList[fileID] = {id: fileID, name: fileName, cDate: fileCDate, mDate: fileMDate, size: fileSize}</dd>
283 * @param fileID {String} The ID of the file to be removed
285 * fileList[fileID] = {id: fileID, name: fileName, cDate: fileCDate, mDate: fileMDate, size: fileSize}
288 removeFile : function (fileID /*String*/) {
289 return this.uploaderswf.callSWF("removeFile", [fileID]);
307 * @param fileID {String} The ID of the file to be uploaded.
315 upload : function (fileID /*String*/, url /*String*/, method /*String*/, postVars /*Object*/, postFileVarName /*String*/) {
316 if (Y.Lang.isArray(fileID)) {
317 return this.uploaderswf.callSWF("uploadThese", [fileID, url, method, postVars, postFileVarName]);
319 else if (Y.Lang.isString(fileID)) {
320 return this.uploaderswf.callSWF("upload", [fileID, url, method, postVars, postFileVarName]);
360 * @param fileID {String} (optional) The ID of the file whose upload should be cancelled. If no ID is specified, all uploads are cancelled.
363 cancel : function (fileID /*String*/) {
364 return this.uploaderswf.callSWF("cancel", [fileID]);