// 파일 업로드 upload = $("#spreadRegistFile").uploadFile({ url : "/file/fileUploadDisk.json", fileName : "file", autoSubmit : false, dragDropStr : '', uploadStr : '등록', showQueueDiv : 'spreadRegistFileQueue', dragdropWidth : 150, statusBarWidth : 140, maxFileCount : 5, showError : false, showProgress : false, onSuccess : function(files, data, xhr, pd) { toast.push(Object.toJSON(files)); upload.reset(); }, onError : function(files, status, errMsg, pd) { toast.push(errMsg); } });