이 화면은 FileUpload 컴포넌트에 대한 샘플 화면이다.
FileUpload 컴포넌트는 HTTP Multipart 통신 프로토콜 표준을 따르는 파일 업로드 처리 컴포넌트이다.
템플릿 위치: /HTML5/COMPONENT/FILEUPLOADER/fileuploader_preview
템플릿 파일
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
// 툴 설치 디렉토리\technet\project\template\ext\java\fileuploader.jsp.txt 파일을 fileuploader.jsp 이름으로 변경후, // 해당 파일을 WAS 서버에 적용하고, 해당 서버 URL로 아래의 base_url 변수값을 변경후 테스트 진행해야 함 function screen_on_load() { // 파일 업로드 대상 URL 지정 uploader_basic.seturl(base_url); } // 파일 추가 버튼 이벤트 처리 function btn_addfile_on_mouseup(objInst) { file01.selectfiles(); // uploader_basic.addfile(); } // 모든 파일 삭제 버튼 이벤트 처리 function btn_deleteallfile_on_mouseup(objInst) { // 모든 업로드 대상 파일 삭제 uploader_basic.deleteallfile(); } // 업로드 상태 초기화 버튼 이벤트 처리 function btn_clearallfilestatus_on_mouseup(objInst) { // 모든 파일에 대한 업로드 상태 초기화 uploader_basic.clearallfilestatus(); // 업로드 상태 초기화를 그리드에 표시 UpdateFileStauts(-1); } // 업로드 시작 버튼 이벤트 처리 function btn_startupload_on_mouseup(objInst) { uploader_basic.startupload(); } // 업로드 중지 버튼 이벤트 처리 function btn_stopupload_on_mouseup(objInst) { uploader_basic.stopupload(); } // 업로드 파일 상태 정보 업데이트 처리 function UpdateFileStauts(nFileIndex) { var count, i; // 파일 인덱스가 -1인 경우, 전체 파일 목록에 대해서 업데이트 처리 if (nFileIndex == -1) { count = uploader_basic.getfilecount(); for (i = 0; i < count; i++) { UpdateOneFileStauts(i); } } // 파일 인덱스가 -1이 아닌 경우, 특정 파일에 대해서 업데이트 처리 else { UpdateOneFileStauts(nFileIndex); } } // 업로드 대상 파일 목록 정보를 그리드에 다시 표시 function ReloadFileStatus() { var nFileIndex, count; // 그리드 내용 전체 지움 grdList.deleteall(); // 업로드 대상 파일 갯수만큼 Loop를 돌면서 그리드에 추가 count = uploader_basic.getfilecount(); for (nFileIndex = 0; nFileIndex < count; nFileIndex++) { grdList.additem(); grdList.setitemtext(nFileIndex, 0, uploader_basic.getfilename(nFileIndex)); grdList.setitemtext(nFileIndex, 1, uploader_basic.getfilesize(nFileIndex)); grdList.setitemtext(nFileIndex, 2, uploader_basic.getfilebriefsize(nFileIndex)); grdList.setitemtext(nFileIndex, 3, uploader_basic.getfiledate(nFileIndex)); grdList.setitemtext(nFileIndex, 4, uploader_basic.getfiletime(nFileIndex)); UpdateOneFileStauts(nFileIndex); } } // 한 파일에 대한 업로드 상태 표시 업데이트 function UpdateOneFileStauts(nFileIndex) { grdList.setitemtext(nFileIndex, 5, uploader_basic.getfilestatus(nFileIndex)); grdList.setitemtext(nFileIndex, 6, uploader_basic.getfileprogress(nFileIndex)); grdList.setitemtext(nFileIndex, 7, uploader_basic.getfileresult(nFileIndex)); grdList.setitemtext(nFileIndex, 8, uploader_basic.getfileresultmsg(nFileIndex)); grdList.setitemtext(nFileIndex, 9, uploader_basic.getfileresultfilename(nFileIndex)); } ///////////////////////////////////////////////////////////////////////////////////////////// // EVENT ///////////////////////////////////////////////////////////////////////////////////////////// // 그리드 파일 드롭 이벤트 처리 (탐색시에서 파일 Drag&Drop 처리시 발생함) function grdList_on_dropfiles(objInst, arrayDropFiles, nDropFileCount) { var i, fileObj; // 드롭된 파일 갯수 및 파일 정보를 콘솔에 출력 factory.consoleprint( "nDropFileCount = " + nDropFileCount); for (i = 0; i < nDropFileCount; i++) { fileObj = arrayDropFiles[i]; factory.consoleprint(i + " : fileObj.name = " + fileObj.name); factory.consoleprint(i + " : fileObj.size = " + fileObj.size); } // 드롭된 파일 오브젝트 배열을 업로드 대상에 추가 uploader_basic.addfileobjectarray(arrayDropFiles); } // 파일 업로드 컴포넌트 개별 파일 업로드 진행 상태 이벤트 처리 function uploader_basic_on_fileprogress(objInst, nFileIndex, strFileName, nPos) { // 파일 업로드 진행 상태 업데이트 grdList.setitemtext(nFileIndex, 6, nPos); } // 파일 업로드 컴포넌트 개별 파일 럽로드 완료 이벤트 처리 function uploader_basic_on_filecomplete(objInst, nFileIndex, strFileName) { // 파일 업로드 완료 상태 업데이트 UpdateOneFileStauts(nFileIndex); } // 파일 업로드 컴포넌트 업로드 대상 목록 변경 이벤트 처리 function uploader_basic_on_listupdate(objInst) { // 업로드 대상 파일 목록 정보를 그리드에 다시 표시 ReloadFileStatus(); } function file01_on_selectfiles(objInst, arrFiles) { if (arrFiles.length == 0) return ; uploader_basic.addfileobjectarray(arrFiles); } function file01_on_readastext(objInst, strText) { fld_textpreview.settext(strText); } function file01_on_readasdataurl(objInst, strData) { img_preview.setimagedata(strData); } function grdList_on_itemselchange(objInst, nPrevSelectRow, nPrevSelectColumn, nCurSelectRow, nCurSelectColumn) { var file_object, file_type; if (nPrevSelectRow == nCurSelectRow) { return ; } fld_textpreview.settext( "" ); img_preview.setimagedata( "" ); file_object = uploader_basic.getfileobject(nCurSelectRow); if (file_object) { file_type = file01.getfiletype(file_object); factory.consoleprint( "file_type = " + file_type); if (file_type.indexOf( "text" ) >= 0) { file01.readastext(file_object); } else if (file_type.indexOf( "image" ) >= 0) { file01.readasdataurl(file_object); } } } |