195 lines
4.8 KiB
Plaintext
195 lines
4.8 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8"%>
|
|
<%@ page import="java.io.*"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<%
|
|
response.setHeader("Pragma", "No-cache");
|
|
response.setHeader("Cache-Control", "no-cache");
|
|
response.setHeader("Expires", "0");
|
|
%>
|
|
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<jsp:include page="/jsp/common/include/css.jsp"/>
|
|
<jsp:include page="/jsp/common/include/script.jsp"/>
|
|
|
|
<script language="javascript" >
|
|
|
|
var isDetail = false;
|
|
function isValid(){
|
|
if($('input[name=telgmClsID]').val().trim() == ""){
|
|
alert("전문클래스ID를 입력하여 주십시요.");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function unformatterFunction(cellvalue, options, rowObject){
|
|
return "";
|
|
}
|
|
|
|
function init(url,key,callback){
|
|
$.ajax({
|
|
type : "POST",
|
|
url:url,
|
|
dataType:"json",
|
|
data:{cmd: 'LIST_DETAIL_COMBO'},
|
|
success:function(json){
|
|
new makeOptions("CODE","CODE").setObj($("select[name=telgmClsName]")).setNoValueInclude(true).setData(json.clsNameList).rendering();
|
|
new makeOptions("CODE","CODE").setObj($("select[name=msgMetaDstcd]")).setNoValueInclude(true).setData(json.msgMetaDstList).rendering();
|
|
if (typeof callback === 'function') {
|
|
callback(url,key);
|
|
}
|
|
setSearchable("telgmClsName,msgMetaDstcd");
|
|
},
|
|
error:function(e){
|
|
alert(e.responseText);
|
|
}
|
|
});
|
|
}
|
|
function detail(url,key){
|
|
if (!isDetail)return;
|
|
$.ajax({
|
|
type : "POST",
|
|
url:url,
|
|
dataType:"json",
|
|
data:{cmd: 'DETAIL'
|
|
, key : key
|
|
},
|
|
success:function(json){
|
|
var data = json;
|
|
var detail = json.list;
|
|
//adapterType
|
|
$("input[name=telgmClsID]").attr('readonly',true);
|
|
$("input,select").each(function(){
|
|
if($(this).attr('name')!=undefined){
|
|
var name = $(this).attr('name').toUpperCase();
|
|
if ( name != null )
|
|
$(this).val(detail[name]);
|
|
}
|
|
});
|
|
|
|
},
|
|
error:function(e){
|
|
alert(e.responseText);
|
|
}
|
|
});
|
|
|
|
}
|
|
$(document).ready(function() {
|
|
var returnUrl = getReturnUrlForReturn();
|
|
var url ='<c:url value="/bap/admin/message/classMapMan.json" />';
|
|
var key ="${param.key}";
|
|
|
|
if (key != "" && key !="null"){
|
|
isDetail = true;
|
|
}
|
|
|
|
|
|
init(url,key,detail);
|
|
|
|
|
|
$("#btn_modify").click(function(){
|
|
if (!isValid())return;
|
|
|
|
if (isDetail) {
|
|
if ( confirm( "수정하시겠습니까?" ) != true ) return;
|
|
} else {
|
|
if ( confirm( "등록하시겠습니까?" ) != true ) return;
|
|
}
|
|
|
|
//공통부만 form으로 구성
|
|
var postData = $('#ajaxForm').serializeArray();
|
|
|
|
if (isDetail){
|
|
postData.push({ name: "cmd" , value:"UPDATE"});
|
|
}else{
|
|
postData.push({ name: "cmd" , value:"INSERT"});
|
|
}
|
|
$.ajax({
|
|
type : "POST",
|
|
url:url,
|
|
data:postData,
|
|
success:function(args){
|
|
alert("저장 되었습니다.");
|
|
goNav(returnUrl);//LIST로 이동
|
|
},
|
|
error:function(e){
|
|
alert(e.responseText);
|
|
}
|
|
});
|
|
});
|
|
$("#btn_delete").click(function(){
|
|
if ( confirm( "삭제하시겠습니까?" ) != true ) return;
|
|
|
|
var postData = $('#ajaxForm').serializeArray();
|
|
postData.push({ name: "cmd" , value:"DELETE"});
|
|
$.ajax({
|
|
type : "POST",
|
|
url:url,
|
|
data:postData,
|
|
success:function(args){
|
|
alert("삭제 되었습니다.");
|
|
goNav(returnUrl);//LIST로 이동
|
|
|
|
},
|
|
error:function(e){
|
|
alert(e.responseText);
|
|
}
|
|
});
|
|
});
|
|
$("#btn_previous").click(function(){
|
|
goNav(returnUrl);//LIST로 이동
|
|
});
|
|
|
|
|
|
|
|
buttonControl(isDetail);
|
|
titleControl(isDetail);
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="right_box">
|
|
<div class="content_top">
|
|
<ul class="path">
|
|
<li><a href="#">${rmsMenuPath}</a></li>
|
|
</ul>
|
|
</div><!-- end content_top -->
|
|
<div class="content_middle" id="content_middle">
|
|
<div class="search_wrap">
|
|
<img src="<c:url value="/img/btn_modify.png"/>" alt="" id="btn_modify" level="W" status="DETAIL,NEW" />
|
|
<img src="<c:url value="/img/btn_delete.png"/>" alt="" id="btn_delete" level="W" status="DETAIL"/>
|
|
<img src="<c:url value="/img/btn_previous.png"/>" alt="" id="btn_previous" level="R" status="DETAIL,NEW"/>
|
|
</div>
|
|
<div class="title">클래스맵핑</div>
|
|
|
|
<form id="ajaxForm">
|
|
<table class="table_row" cellspacing="0">
|
|
<!-- 공통-->
|
|
<tr>
|
|
<th style="width:200px;">전문클래스ID</th><td><input type="text" name="telgmClsID" /> </td>
|
|
</tr>
|
|
<tr>
|
|
<th>메시지메타구분코드</th><td><div class="select-style"><select type="text" name="msgMetaDstcd"></select></div> </td>
|
|
</tr>
|
|
<tr>
|
|
<th>전문클래스명</th><td><div class="select-style"><select type="text" name="telgmClsName"></select></div> </td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
|
|
<!-- grid -->
|
|
<table id="grid" ></table>
|
|
|
|
|
|
|
|
</div><!-- end content_middle -->
|
|
</div><!-- end right_box -->
|
|
</body>
|
|
</html>
|
|
|