|
|
@ -2,9 +2,9 @@
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=11" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=11" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
|
|
|
|
<%-- <link rel="shortcut icon" type="image/x-icon" href="${ctx}/resources/images/common/favicon.ico"/> --%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
|
|
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="${ctx}/resources/framework/images/common/favicon.ico"/> --%>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- [JS/CSS] tui Grid -->
|
|
|
|
<!-- [JS/CSS] tui Grid -->
|
|
|
|
<%-- TODO: jquery-ui theme 업무별 적용 --%>
|
|
|
|
<%-- TODO: jquery-ui theme 업무별 적용 --%>
|
|
|
@ -62,7 +62,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
<!-- [JS/CSS] ENS Project -->
|
|
|
|
<!-- [JS/CSS] ENS Project -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%--TODO: 보완 필요 : 공통 ajax 호출 모듈과 통합 필요 --%>
|
|
|
|
<script type="text/javascript">
|
|
|
|
<script type="text/javascript">
|
|
|
|
var Loading = new Object();
|
|
|
|
var Loading = new Object();
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(document).ready(function(){
|
|
|
@ -77,6 +77,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$( document ).ajaxError(function( event, jqxhr, settings, thrownError ){
|
|
|
|
$( document ).ajaxError(function( event, jqxhr, settings, thrownError ){
|
|
|
|
|
|
|
|
console.log('BizIncludeBase::ajaxError >>>>> ', thrownError)
|
|
|
|
if(settings.dataType==undefined){
|
|
|
|
if(settings.dataType==undefined){
|
|
|
|
//html 문자열을 객체로 변환 후 메시지만 추출
|
|
|
|
//html 문자열을 객체로 변환 후 메시지만 추출
|
|
|
|
var doc = document.createElement("html");
|
|
|
|
var doc = document.createElement("html");
|
|
|
@ -86,6 +87,8 @@
|
|
|
|
msg = jqxhr.responseText;
|
|
|
|
msg = jqxhr.responseText;
|
|
|
|
alert(msg);
|
|
|
|
alert(msg);
|
|
|
|
}else if(settings.dataType=='json'){
|
|
|
|
}else if(settings.dataType=='json'){
|
|
|
|
|
|
|
|
//error 발생시 html type인 경우
|
|
|
|
|
|
|
|
if(settings.contentType=='application/x-www-form-urlencoded') return document.write(jqxhr.responseText);
|
|
|
|
alert(jqxhr.responseText);
|
|
|
|
alert(jqxhr.responseText);
|
|
|
|
}else {
|
|
|
|
}else {
|
|
|
|
alert(jqxhr.responseText);
|
|
|
|
alert(jqxhr.responseText);
|
|
|
|