이지우 - 관리자 > 분쟁조정관리 > 양식게시판 생성
This commit is contained in:
parent
5684b7e5ac
commit
e174136cd1
@ -745,8 +745,10 @@ public class EgovBBSManageController {
|
||||
// 위/아래 게시글 번호, 제목 조회
|
||||
EgovMap upDownNttid = bbsMngService.getUpDownNttIdNSj(boardVO);
|
||||
if(null != upDownNttid) {
|
||||
model.addAttribute("nextNttIdNSj", upDownNttid.get("nextNttIdNSj"));
|
||||
model.addAttribute("prevNttIdNSj", upDownNttid.get("prevNttIdNSj"));
|
||||
/*model.addAttribute("nextNttIdNSj", upDownNttid.get("nextNttIdNSj"));
|
||||
model.addAttribute("prevNttIdNSj", upDownNttid.get("prevNttIdNSj"));*/
|
||||
model.addAttribute("nextNttIdNSj", upDownNttid.get("nextnttidnsj"));
|
||||
model.addAttribute("prevNttIdNSj", upDownNttid.get("prevnttidnsj"));
|
||||
}else {
|
||||
model.addAttribute("nextNttIdNSj", null);
|
||||
model.addAttribute("prevNttIdNSj", null);
|
||||
|
||||
@ -301,7 +301,9 @@ function bbsExcelDownload(){
|
||||
<c:if test="${brdMstrVO.fileAtchPosblAt == 'Y'}">
|
||||
<td>
|
||||
<c:if test="${result.atchFileCnt > 0}">
|
||||
<img src="/img/post/atch_file.png">
|
||||
<c:import url="/cmm/fms/selectBBSFileInfs.do" charEncoding="utf-8">
|
||||
<c:param name="param_atchFileId" value="${result.atchFileId}" />
|
||||
</c:import>
|
||||
</c:if>
|
||||
</td>
|
||||
</c:if>
|
||||
@ -362,7 +364,9 @@ function bbsExcelDownload(){
|
||||
<c:if test="${brdMstrVO.fileAtchPosblAt == 'Y'}">
|
||||
<td>
|
||||
<c:if test="${result.atchFileCnt > 0}">
|
||||
<img src="/img/post/atch_file.png">
|
||||
<c:import url="/cmm/fms/selectBBSFileInfs.do" charEncoding="utf-8">
|
||||
<c:param name="param_atchFileId" value="${result.atchFileId}" />
|
||||
</c:import>
|
||||
</c:if>
|
||||
</td>
|
||||
</c:if>
|
||||
|
||||
@ -31,6 +31,20 @@
|
||||
<script type="text/javascript" src="<c:url value="/validator.do"/>"></script>
|
||||
<validator:javascript formName="board" staticJavascript="false" xhtml="true" cdata="false" />
|
||||
<script type="text/javascript">
|
||||
$( document ).ready(function() {
|
||||
$(function () {
|
||||
|
||||
$('#filebutton').click(function (e) {
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
$('#file_temp').click();
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
function fn_egov_validateForm(obj) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -269,7 +269,7 @@ function sendFileToServer(formData, obj , fileObj, _fileIdx)
|
||||
list_html += '<td class="td_filesort file_extension">'+getFileExtension(fileObj.name)+'</td>';
|
||||
list_html += '<td class="td_filesize file_size"><p class="file_size_text" value='+fileObj.size+'>'+getStrFileSize(fileObj.size)+'</p></td>';
|
||||
/*list_html += '<td class="file_date">'+getDate()+'</td>';*/
|
||||
list_html += '<td class="file_del"><button type="button" class="btn_del" alt="" onclick="delete_item(this, '+_fileIdx+')" ><i></i></button></td>';
|
||||
list_html += '<td class="file_del"><button type="button" class="btn btn_text btn_30 red_border btn_del" alt="" onclick="delete_item(this, '+_fileIdx+')" ><i>삭제</i></button></td>';
|
||||
list_html += '<input type="hidden" name="fileSize" class="item_file_size" value="'+fileObj.size+'">';
|
||||
list_html += '<input type="hidden" name="atchFileIds" class="imsi" value="'+tt+'" title="파일삭제">';
|
||||
list_html += '</tr>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user