|
|
@ -134,7 +134,7 @@
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
<div class="row g-1">
|
|
|
|
<div class="row g-1">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<button class="btn btn-blue" id="btnAddFile--${pageName}" title="첨부파일 추가">파일 추가</button>
|
|
|
|
<button type="button" class="btn btn-blue" id="btnAddFile--${pageName}" title="첨부파일 추가">파일 추가</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 첨부 파일 테이블 -->
|
|
|
|
<!-- 첨부 파일 테이블 -->
|
|
|
@ -348,8 +348,8 @@
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_ID + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_ID + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_NM + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_NM + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_SIZE + " byte</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + item.FILE_SIZE + " byte</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button class='btn' onclick='fnBtnFileDownload${pageName}(" + item.FILE_ID + ");'><i class='bx bx-download me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button type='button' class='btn' onclick='fnFileDownload${pageName}(" + item.FILE_ID + ");'><i class='bx bx-download me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button class='btn' onclick='fnBtnFileRemove${pageName}(this);'><i class='bx bx-trash me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button type='button' class='btn' onclick='fnFileRemove${pageName}(this);'><i class='bx bx-trash me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "</tr>";
|
|
|
|
innerHtml += "</tr>";
|
|
|
|
|
|
|
|
|
|
|
|
$("#fileList--${pageName} > tbody:last").append(innerHtml);
|
|
|
|
$("#fileList--${pageName} > tbody:last").append(innerHtml);
|
|
|
@ -390,7 +390,7 @@
|
|
|
|
innerHtml += "<td class='text-center'>" + selectedFile.name + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + selectedFile.name + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + selectedFile.size + " byte</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + selectedFile.size + " byte</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button class='btn' onclick='fnBtnFileRemove${pageName}(this);'><i class='bx bx-trash me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "<td class='text-center'>" + "<button type='button' class='btn' onclick='fnFileRemove${pageName}(this);'><i class='bx bx-trash me-1'></i></button>" + "</td>";
|
|
|
|
innerHtml += "</tr>";
|
|
|
|
innerHtml += "</tr>";
|
|
|
|
|
|
|
|
|
|
|
|
$("#fileList--${pageName} > tbody:last").append(innerHtml);
|
|
|
|
$("#fileList--${pageName} > tbody:last").append(innerHtml);
|
|
|
@ -424,7 +424,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 첨부파일 삭제 버튼 클릭
|
|
|
|
// 첨부파일 삭제 버튼 클릭
|
|
|
|
function fnBtnFileRemove${pageName}(obj) {
|
|
|
|
function fnFileRemove${pageName}(obj) {
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content : "선택한 파일을 삭제하시겠습니까?"
|
|
|
|
content : "선택한 파일을 삭제하시겠습니까?"
|
|
|
|
, onOK : () => {
|
|
|
|
, onOK : () => {
|
|
|
@ -434,7 +434,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 첨부파일 다운로드
|
|
|
|
// 첨부파일 다운로드
|
|
|
|
function fnBtnFileDownload${pageName}(fileID) {
|
|
|
|
function fnFileDownload${pageName}(fileID) {
|
|
|
|
top.location.href = "/file/download.do?fileID=" + fileID;
|
|
|
|
top.location.href = "/file/download.do?fileID=" + fileID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|