diff --git a/src/main/webapp/WEB-INF/jsp/include/head.jsp b/src/main/webapp/WEB-INF/jsp/include/head.jsp index be0cd699..286c061d 100644 --- a/src/main/webapp/WEB-INF/jsp/include/head.jsp +++ b/src/main/webapp/WEB-INF/jsp/include/head.jsp @@ -32,6 +32,7 @@ " /> " /> + " /> " /> diff --git a/src/main/webapp/WEB-INF/jsp/include/top.jsp b/src/main/webapp/WEB-INF/jsp/include/top.jsp index a52cf021..2d3ae2b7 100644 --- a/src/main/webapp/WEB-INF/jsp/include/top.jsp +++ b/src/main/webapp/WEB-INF/jsp/include/top.jsp @@ -176,12 +176,18 @@ -function fnOpenTempFileUploadWindow(){ - window.open( - wctx.url("/resources/html/fileUpload.html") - ,"fileUpload" - ,'top=10, left=10, width=1000, height=500' - ); +async function fnOpenTempFileUploadWindow(){ + + var resp = await fetch(wctx.url("/resources/html/fileUpload.html")); + var template = await resp.text(); + + dialog.open({ + id : "fileUploadDialog", + title: "파일 업로드", + size : "lg", + content: template + }); + } /*--------------------- 설정 선택 다이얼로그 표시 ---------------------*/ diff --git a/src/main/webapp/resources/html/fileUpload.html b/src/main/webapp/resources/html/fileUpload.html index 7d7b689e..778290b8 100644 --- a/src/main/webapp/resources/html/fileUpload.html +++ b/src/main/webapp/resources/html/fileUpload.html @@ -1,42 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -파일업로드 - -
@@ -154,35 +115,18 @@
- - - - - - - - - - - - - - - - - - - + \ No newline at end of file