|
|
|
@ -1,3 +1,22 @@
|
|
|
|
|
function download(filePath, fileName, tempAreaId){
|
|
|
|
|
var a = document.createElement("a");
|
|
|
|
|
a.href = resp.filePath;
|
|
|
|
|
a.download = resp.fileName;
|
|
|
|
|
document.getElementById(tempAreaId).appendChild(a);
|
|
|
|
|
a.click();
|
|
|
|
|
document.getElementById(tempAreaId).removeChild(a);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openPDF(filePath, fileName, windowName){
|
|
|
|
|
filePath = filePath.replaceAll("\\","%5c");
|
|
|
|
|
|
|
|
|
|
window.open(
|
|
|
|
|
wctx.url("/resources/html/pdf.html"+"?"+"path="+filePath)
|
|
|
|
|
,windowName
|
|
|
|
|
,'top=10, left=10'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//엑셀 파일 생성 정보
|
|
|
|
|
function getCellDefs($th, $td){
|
|
|
|
|
var cellDefs = [];
|
|
|
|
|