2024-03-12 14:33 기소유예 내용 등록시 길이 오류 수정
This commit is contained in:
parent
2a9ca3890a
commit
2238d12aca
@ -8,6 +8,9 @@
|
|||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
|
<%pageContext.setAttribute("crlf", "\r\n"); %>
|
||||||
|
<%pageContext.setAttribute("crlt", "<"); %>
|
||||||
|
<%pageContext.setAttribute("crgt", ">"); %>
|
||||||
<%
|
<%
|
||||||
/**
|
/**
|
||||||
* @Class Name : cndtnEduPrcsAplctPrdMngDetail.jsp
|
* @Class Name : cndtnEduPrcsAplctPrdMngDetail.jsp
|
||||||
@ -397,7 +400,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th scope="row">상세교육과정</th>
|
<th scope="row">상세교육과정</th>
|
||||||
<td>
|
<td>
|
||||||
<c:out value="${info.prcsCn }" />
|
<c:out value="${fn:replace(info.prcsCn , crlf , '<br/>')}" escapeXml="false" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -155,6 +155,11 @@
|
|||||||
|
|
||||||
function fncSave(){
|
function fncSave(){
|
||||||
|
|
||||||
|
if ($('#prcsCn').val().length>1000){
|
||||||
|
alert("상세교육과정은 1000자 까지만 저장가능합니다.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var data = new FormData(document.getElementById("createForm"));
|
var data = new FormData(document.getElementById("createForm"));
|
||||||
if(confirm("저장하시겠습니까?")){
|
if(confirm("저장하시겠습니까?")){
|
||||||
var url = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngMdfyAjax.do'/>";
|
var url = "<c:url value='/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngMdfyAjax.do'/>";
|
||||||
|
|||||||
@ -69,6 +69,11 @@
|
|||||||
|
|
||||||
function fncSave(){
|
function fncSave(){
|
||||||
|
|
||||||
|
if ($('#prcsCn').val().length>1000){
|
||||||
|
alert("상세교육과정은 1000자 까지만 저장가능합니다.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var data = new FormData(document.getElementById("createForm"));
|
var data = new FormData(document.getElementById("createForm"));
|
||||||
if(confirm("저장하시겠습니까?")){
|
if(confirm("저장하시겠습니까?")){
|
||||||
var url = "${pageContext.request.contextPath}/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngRegAjax.do";
|
var url = "${pageContext.request.contextPath}/kccadr/oprtn/cndtnSspnIdtmt/cndtnEduPrcsAplctPrdMngRegAjax.do";
|
||||||
|
|||||||
@ -8,6 +8,9 @@
|
|||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
|
<%pageContext.setAttribute("crlf", "\r\n"); %>
|
||||||
|
<%pageContext.setAttribute("crlt", "<"); %>
|
||||||
|
<%pageContext.setAttribute("crgt", ">"); %>
|
||||||
<%
|
<%
|
||||||
/**
|
/**
|
||||||
* @Class Name : cndtnEduPrcsAplctPrdMngDetail.jsp
|
* @Class Name : cndtnEduPrcsAplctPrdMngDetail.jsp
|
||||||
@ -556,7 +559,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th scope="row">상세교육과정</th>
|
<th scope="row">상세교육과정</th>
|
||||||
<td>
|
<td>
|
||||||
<c:out value="${info.prcsCn }" />
|
<c:out value="${fn:replace(info.prcsCn , crlf , '<br/>')}" escapeXml="false" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -8,6 +8,9 @@
|
|||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
|
<%pageContext.setAttribute("crlf", "\r\n"); %>
|
||||||
|
<%pageContext.setAttribute("crlt", "<"); %>
|
||||||
|
<%pageContext.setAttribute("crgt", ">"); %>
|
||||||
<%
|
<%
|
||||||
/**
|
/**
|
||||||
* @Class Name : fndthEduPrcsAplctPrdMngDetail.jsp
|
* @Class Name : fndthEduPrcsAplctPrdMngDetail.jsp
|
||||||
|
|||||||
@ -8,6 +8,9 @@
|
|||||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
||||||
|
<%pageContext.setAttribute("crlf", "\r\n"); %>
|
||||||
|
<%pageContext.setAttribute("crlt", "<"); %>
|
||||||
|
<%pageContext.setAttribute("crgt", ">"); %>
|
||||||
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
||||||
|
|
||||||
<% pageContext.setAttribute("replaceChar", "\n"); %>
|
<% pageContext.setAttribute("replaceChar", "\n"); %>
|
||||||
@ -245,7 +248,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<th scope="row">과정</th>
|
<th scope="row">과정</th>
|
||||||
<td>
|
<td>
|
||||||
<c:out value="${info.prcsNm}"/>
|
<c:out value="${fn:replace(info.prcsNm , crlf , '<br/>')}" escapeXml="false" />
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
@ -8,6 +8,9 @@
|
|||||||
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
<%@ taglib prefix="ve" uri="/WEB-INF/tlds/kcc_tld.tld"%>
|
||||||
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
|
||||||
|
<%pageContext.setAttribute("crlf", "\r\n"); %>
|
||||||
|
<%pageContext.setAttribute("crlt", "<"); %>
|
||||||
|
<%pageContext.setAttribute("crgt", ">"); %>
|
||||||
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
<un:useConstants var="VeConstants" className="kcc.ve.cmm.VeConstants" />
|
||||||
|
|
||||||
<% pageContext.setAttribute("replaceChar", "\n"); %>
|
<% pageContext.setAttribute("replaceChar", "\n"); %>
|
||||||
@ -391,8 +394,6 @@
|
|||||||
<colgroup>
|
<colgroup>
|
||||||
<col style="width: 210px;">
|
<col style="width: 210px;">
|
||||||
<col style="width: auto;">
|
<col style="width: auto;">
|
||||||
<col style="width: 210px;">
|
|
||||||
<col style="width: auto;">
|
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
@ -442,7 +443,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th scope="row">상세교육과정</th>
|
<th scope="row">상세교육과정</th>
|
||||||
<td>
|
<td>
|
||||||
<c:out value="${info.prcsCn }" />
|
<c:out value="${fn:replace(info.prcsCn, crlf , '<br/>')}" escapeXml="false" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user