169 lines
5.8 KiB
Plaintext
169 lines
5.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" >
|
|
|
|
$(document).ready(function() {
|
|
var gridPostData = getSearchForJqgrid("cmd","LIST"); //jqgrid에서는 object 로
|
|
var svrDstcd = ("${param.searchSvrDstcd}"=="")?"BAP":"${param.searchSvrDstcd}";
|
|
gridPostData['searchSvrDstcd'] = svrDstcd;
|
|
$("#svrDst").val(svrDstcd);
|
|
$('#grid').jqGrid({
|
|
datatype:"json",
|
|
mtype: 'POST',
|
|
url: '<c:url value="/bap/admin/common/comPropertyMan.json" />',
|
|
postData : gridPostData,
|
|
colNames:['프라퍼티 그룹명',
|
|
'프라퍼티 그룹설명'
|
|
],
|
|
colModel:[
|
|
{ name : 'PRPTYGROUPNAME' , align:'left' ,sortable:false },
|
|
{ name : 'PRPTYGROUPDESC' , align:'left' }
|
|
],
|
|
jsonReader: {
|
|
repeatitems:false
|
|
},
|
|
pager : $('#pager'),
|
|
page : '${param.page}',
|
|
rowNum : '${rmsDefaultRowNum}',
|
|
autoheight: true,
|
|
height: $("#container").height(),
|
|
autowidth: true,
|
|
viewrecords: true,
|
|
rowList : eval('[${rmsDefaultRowList}]'),
|
|
loadComplete:function (d){
|
|
var data = d.rows;
|
|
if(svrDstcd=="BAT"){
|
|
for(var i=0; i<data.length; i++){
|
|
$(this).jqGrid('setCell',i+1,'PRPTYGROUPNAME',data[i]['PRPTYGROUPID']);
|
|
$(this).jqGrid('setCell',i+1,'PRPTYGROUPDESC',data[i]['PRPTYGROUPNAME']);
|
|
}
|
|
}
|
|
},
|
|
gridComplete:function (d){
|
|
var colModel = $(this).getGridParam("colModel");
|
|
for(var i = 0 ; i< colModel.length; i++){
|
|
$(this).setColProp(colModel[i].name, {sortable : false}); //그리드 헤더 화살표 삭제(정렬X)
|
|
}
|
|
},
|
|
ondblClickRow: function(rowId) {
|
|
var rowData = $(this).getRowData(rowId);
|
|
var prptyGroupName = rowData['PRPTYGROUPNAME'];
|
|
var url = '<c:url value="/bap/admin/common/comPropertyMan.view" />';
|
|
url = url + '?cmd=DETAIL';
|
|
url = url + '&page='+$(this).getGridParam("page");
|
|
url = url + '&returnUrl='+getReturnUrl();
|
|
url = url + '&menuId='+'${param.menuId}';
|
|
url = url + '&searchSvrDstcd='+$("#svrDst").val();
|
|
//검색값
|
|
url = url + '&'+getSearchUrl();
|
|
//key값
|
|
url = url + '&prptyGroupName='+prptyGroupName;
|
|
goNav(url);
|
|
},loadError: function (jqXHR, textStatus, errorThrown) {
|
|
if(jqXHR.status == 401) {
|
|
var location ='<%=request.getContextPath()%>/';
|
|
comloadError(jqXHR, textStatus, errorThrown ,location);
|
|
}
|
|
}
|
|
});
|
|
|
|
|
|
resizeJqGridWidth('grid','title','1000');
|
|
|
|
$("#btn_search").click(function(){
|
|
var postData = getSearchForJqgrid("cmd","LIST"); //jqgrid에서는 object 로
|
|
$("#grid").setGridParam({ postData: postData ,page : "1" }).trigger("reloadGrid");
|
|
});
|
|
$("#btn_new").click(function(){
|
|
var url = '<c:url value="/bap/admin/common/comPropertyMan.view"/>';
|
|
url = url + '?cmd=DETAIL';
|
|
url = url + '&page='+$("#grid").getGridParam("page");
|
|
url = url + '&returnUrl='+getReturnUrl();
|
|
url = url + '&menuId='+'${param.menuId}';
|
|
url = url + '&searchSvrDstcd='+$("#svrDst").val();
|
|
//검색값
|
|
url = url + '&'+getSearchUrl();
|
|
|
|
goNav(url);
|
|
});
|
|
|
|
$("input[name^=search]").keydown(function(key){
|
|
if (key.keyCode == 13){
|
|
$("#btn_search").click();
|
|
}
|
|
});
|
|
|
|
$("#svrDst").change(function(){
|
|
var postData = getSearchForJqgrid("cmd","LIST");
|
|
postData['searchSvrDstcd']= $(this).val();
|
|
svrDstcd = $(this).val();
|
|
$("#grid").setGridParam({postData: postData ,page : "1" }).trigger("reloadGrid");
|
|
});
|
|
|
|
buttonControl();
|
|
|
|
});
|
|
|
|
</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="title">
|
|
<div class="search_wrap">
|
|
<img src="<c:url value="/img/btn_new.png"/>" alt="" id="btn_new" level="W" />
|
|
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
|
</div>
|
|
<div class="title">프로퍼티 관리<span class="tooltip">각 Layer에서 필요한 프라퍼티 Key, Value를 하나의 그룹으로 등록하기 위한 그룹명</span></div>
|
|
<div class="select-style" style="display : inline-block;">
|
|
<select id="svrDst" name="searchSvrDstcd" style="width: 60px ; height: 25px; margin: 0px 0px 4px 0px;">
|
|
<option value="BAP"> 일괄</option>
|
|
<!-- <option value="BAT"> 배치</option> -->
|
|
</select>
|
|
</div>
|
|
<table class="search_condition" cellspacing=0;>
|
|
<tbody>
|
|
<tr>
|
|
<th style="width:180px;">프로퍼티그룹</th>
|
|
<td>
|
|
<input type="text" name="searchPrptyGroupName" value="${param.searchPrptyGroupName}">
|
|
</td>
|
|
<th style="width:180px;">프로퍼티그룹 설명</th>
|
|
<td>
|
|
<input type="text" name="searchPrptyGroupDesc" value="${param.searchPrptyGroupDesc}">
|
|
</td>
|
|
<th style="width:180px;">프로퍼티 키</th>
|
|
<td>
|
|
<input type="text" name="searchPrptyName" value="${param.searchPrptyName}">
|
|
</td>
|
|
<th style="width:180px;">프로퍼티 값</th>
|
|
<td>
|
|
<input type="text" name="searchPrpty2Val" value="${param.searchPrpty2Val}">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table id="grid" ></table>
|
|
<div id="pager"></div>
|
|
</div><!-- end content_middle -->
|
|
</div><!-- end right_box -->
|
|
</body>
|
|
</html>
|
|
|