|
|
@ -1,8 +1,5 @@
|
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
<%@ include file="/WEB-INF/jsp/framework/taglibs.jsp"%>
|
|
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
|
|
|
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
|
|
|
|
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<form name="frmSearch" id="frmSearch" method="post">
|
|
|
|
<form name="frmSearch" id="frmSearch" method="post">
|
|
|
@ -19,28 +16,23 @@
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: 30%;"/>
|
|
|
|
<col style="width: 30%;"/>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: ;"/>
|
|
|
|
<col/>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: ;"/>
|
|
|
|
<col/>
|
|
|
|
<col style="width: 7%;"/>
|
|
|
|
<col style="width: 7%;"/>
|
|
|
|
</colgroup>
|
|
|
|
</colgroup>
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="6">
|
|
|
|
<td colspan="6">
|
|
|
|
<select name="sbscrbSttus" id="sbscrbSttus" title="검색조건1-사용자상태" style=" width: 100px">
|
|
|
|
<code:select id="sbscrbSttus" name="sbscrbSttus" codeId="XIT013" title="사용자상태" cls="selectBox" alt="selectBox tag"/>
|
|
|
|
<option value="0" <c:if test="${empty userSearchVO.sbscrbSttus || userSearchVO.sbscrbSttus == '0'}">selected="selected"</c:if> >상태(전체)</option>
|
|
|
|
<select name="searchCondition" id="searchCondition" title="검색구분" class="selectBox">
|
|
|
|
<option value="A" <c:if test="${userSearchVO.sbscrbSttus == 'A'}">selected="selected"</c:if> >가입신청</option>
|
|
|
|
|
|
|
|
<option value="D" <c:if test="${userSearchVO.sbscrbSttus == 'D'}">selected="selected"</c:if> >삭제</option>
|
|
|
|
|
|
|
|
<option value="P" <c:if test="${userSearchVO.sbscrbSttus == 'P'}">selected="selected"</c:if> >승인</option>
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select name="searchCondition" id="searchCondition" title="검색조건2-검색어구분" style="width: 100px">
|
|
|
|
|
|
|
|
<option value="0" <c:if test="${userSearchVO.searchCondition == '0'}">selected="selected"</c:if> >ID</option>
|
|
|
|
<option value="0" <c:if test="${userSearchVO.searchCondition == '0'}">selected="selected"</c:if> >ID</option>
|
|
|
|
<option value="1" <c:if test="${empty userSearchVO.searchCondition || userSearchVO.searchCondition == '1'}">selected="selected"</c:if> >Name</option>
|
|
|
|
<option value="1" <c:if test="${empty userSearchVO.searchCondition || userSearchVO.searchCondition == '1'}">selected="selected"</c:if> >Name</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
<input name="searchKeyword" title="검색어" type="text" value="<c:out value="${userSearchVO.searchKeyword}"/>" />
|
|
|
|
<input name="searchKeyword" title="검색어" type="text" value="<c:out value="${userSearchVO.searchKeyword}"/>" />
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="button" id="btnSearch" class="btn_search" title="검색" value="검색" />
|
|
|
|
<input type="button" id="btnSearch" class="btn_search" title="검색" value="검색" onclick="XitUserRegMng_list.findData()"/>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</tbody>
|
|
|
@ -60,331 +52,269 @@
|
|
|
|
<div id="grid"></div>
|
|
|
|
<div id="grid"></div>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javaScript" language="javascript" defer="defer">
|
|
|
|
<script type="text/javaScript" defer="defer">
|
|
|
|
$(document).ready(function(){
|
|
|
|
let GRID = null;
|
|
|
|
XitUserRegMng_list.init();
|
|
|
|
|
|
|
|
});
|
|
|
|
/* *******************************
|
|
|
|
/* *******************************
|
|
|
|
* 사용자 등록관리 Functions
|
|
|
|
* 사용자 등록관리 Functions
|
|
|
|
******************************* */
|
|
|
|
******************************* */
|
|
|
|
var XitUserRegMng_list = {
|
|
|
|
var XitUserRegMng_list = {
|
|
|
|
/* ========================
|
|
|
|
/* ========================
|
|
|
|
* 초기화
|
|
|
|
* 초기화
|
|
|
|
======================== */
|
|
|
|
======================== */
|
|
|
|
init : function(){
|
|
|
|
init : function(){
|
|
|
|
|
|
|
|
/**
|
|
|
|
const gridColumns = [
|
|
|
|
* Grid Config Settings
|
|
|
|
{
|
|
|
|
*/
|
|
|
|
header: '번호',
|
|
|
|
//Grid Style Set
|
|
|
|
name: 'rowNum',
|
|
|
|
Grid.applyTheme('striped'); // Call API of static method
|
|
|
|
width: 50,
|
|
|
|
//Grid 체크박스 checked EventListner
|
|
|
|
sortable: false,
|
|
|
|
instance.on('check', function(ev) {
|
|
|
|
align: 'center',
|
|
|
|
// console.log('check!', ev);
|
|
|
|
renderer: {
|
|
|
|
});
|
|
|
|
type : RowNumberRenderer
|
|
|
|
//Grid 체크박스 unchecked EventListner
|
|
|
|
}
|
|
|
|
instance.on('uncheck', function(ev) {
|
|
|
|
},
|
|
|
|
// console.log('uncheck!', ev);
|
|
|
|
{
|
|
|
|
});
|
|
|
|
header: '아이디',
|
|
|
|
//Grid 체크박스 focus이동 EventListner
|
|
|
|
name: 'userId',
|
|
|
|
instance.on('focusChange', function(ev) {
|
|
|
|
width: 160,
|
|
|
|
// console.log('change focused cell!', ev);
|
|
|
|
sortable: true,
|
|
|
|
});
|
|
|
|
sortingType: 'desc',
|
|
|
|
|
|
|
|
align: 'center',
|
|
|
|
/**
|
|
|
|
renderer: {
|
|
|
|
* Elements EventListener Settings
|
|
|
|
type: CustomButtonRenderer,
|
|
|
|
*/
|
|
|
|
options: {
|
|
|
|
//검색 Event 설정
|
|
|
|
formatter : function(props){
|
|
|
|
$('#btnSearch').on({
|
|
|
|
var rowData = props.grid.getRow(props.rowKey);
|
|
|
|
click: function(){
|
|
|
|
var obj = {
|
|
|
|
XitUserRegMng_list.findData();
|
|
|
|
formatter : rowData.userId
|
|
|
|
}
|
|
|
|
,element : "text"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/*등록 버튼 Event 설정
|
|
|
|
return obj;
|
|
|
|
등록 팝업을 OPEN 한다.*/
|
|
|
|
}
|
|
|
|
$('#btnRegist').on({
|
|
|
|
,eventFunction: XitUserRegMng_list.fnClickRegBtn
|
|
|
|
click: function(){
|
|
|
|
,eventType : "click"
|
|
|
|
XitUserRegMng_list.pagePopup('insert', '<c:url value="/framework/biz/mng/usr/UserRegMng_input.do"/>');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//삭제 버튼 Event 설정
|
|
|
|
|
|
|
|
$('#btnDelete').on({
|
|
|
|
|
|
|
|
click: function(){
|
|
|
|
|
|
|
|
if(confirm("삭제하시겠습니까?")){
|
|
|
|
|
|
|
|
var checkArr = instance.getCheckedRows();
|
|
|
|
|
|
|
|
var checkedIds = "";
|
|
|
|
|
|
|
|
checkArr.forEach(function(item, index){
|
|
|
|
|
|
|
|
checkedIds += (item.userTy +":"+item.userId);
|
|
|
|
|
|
|
|
if(checkArr.length -1 > index){
|
|
|
|
|
|
|
|
checkedIds += ",";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
document.frmSearch.checkedIdForDel.value=checkedIds;
|
|
|
|
},
|
|
|
|
XitUserRegMng_list.removeData();
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '사용자 이름',
|
|
|
|
|
|
|
|
name: 'userNm',
|
|
|
|
|
|
|
|
width: 120,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '사용자 이메일',
|
|
|
|
|
|
|
|
name: 'emailAdres',
|
|
|
|
|
|
|
|
minWidth: 160,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '전화번호',
|
|
|
|
|
|
|
|
name: 'moblphonNo',
|
|
|
|
|
|
|
|
width: 120,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '등록일',
|
|
|
|
|
|
|
|
name: 'sbscrbDe',
|
|
|
|
|
|
|
|
width: 150,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '가입상태',
|
|
|
|
|
|
|
|
name: 'userSttusCode',
|
|
|
|
|
|
|
|
width: 110,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
XitUserRegMng_list.fn_setInputLimit();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 입력값 언어 선택
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
fn_setInputLimit : function(){
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 조회
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
findData : function(){
|
|
|
|
|
|
|
|
instance.reloadData();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 등록
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
addData : function(){
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 수정
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
modifyData : function(){
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 삭제
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
removeData : function(){
|
|
|
|
|
|
|
|
var param = $("#frmSearch").serialize();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
url : "/framework/biz/mng/usr/UserRegMng_deletes_proc.do",
|
|
|
|
|
|
|
|
data : param,
|
|
|
|
|
|
|
|
type : "post",
|
|
|
|
|
|
|
|
dataType : "json",
|
|
|
|
|
|
|
|
success : function(data) {
|
|
|
|
|
|
|
|
alert(data.resp.message);
|
|
|
|
|
|
|
|
XitUserRegMng_list.findData();
|
|
|
|
|
|
|
|
window.close();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error: function(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 유효성 검증
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
validate : function(flag){
|
|
|
|
|
|
|
|
switch(flag){
|
|
|
|
|
|
|
|
case 'delete' :
|
|
|
|
|
|
|
|
/* 필수값 설정 */
|
|
|
|
|
|
|
|
var dataSet = instance.getData(); //Grid에 출력된 DataSet
|
|
|
|
|
|
|
|
var arrCheckedRowKey = instance.getCheckedRowKeys(); //선택한 row의 key값( 선택된 row 정보가 필요 시 "getCheckedRows()" )
|
|
|
|
|
|
|
|
// var arrCheckedRow = instance.getCheckedRows(); //선택한 row
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 유효성 확인 */
|
|
|
|
const gridOptions = {
|
|
|
|
if(dataSet.length==0){
|
|
|
|
el: 'grid',
|
|
|
|
alert("조회된 결과가 없습니다.");
|
|
|
|
rowHeaders: [],
|
|
|
|
return false;
|
|
|
|
columns: gridColumns,
|
|
|
|
|
|
|
|
columnOptions: {
|
|
|
|
|
|
|
|
frozenCount: 1 //고정컬럼 갯수
|
|
|
|
|
|
|
|
, minWidth: 80 //최소 사이즈
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(arrCheckedRowKey.length==0) {
|
|
|
|
};
|
|
|
|
alert("선택된 자료가 없습니다.");
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 페이지 이동
|
|
|
|
|
|
|
|
-외부사이트 링크가 필요 시 사용(내부코드는 각 페이지에 맞게 수정, ex>https://www.gov.kr/portal/main )
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
pageLink: function(flag, url, params){
|
|
|
|
|
|
|
|
switch (flag) {
|
|
|
|
|
|
|
|
case "move": //페이지 이동
|
|
|
|
|
|
|
|
document.frmSearch.searchKeyword.value = "";
|
|
|
|
|
|
|
|
document.frmSearch.action = url;
|
|
|
|
|
|
|
|
document.frmSearch.submit();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "popup": //팝업 OPEN
|
|
|
|
|
|
|
|
XitUserRegMng_list.pagePopup(flag, url, params);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 페이지 Open
|
|
|
|
|
|
|
|
-팝업페이지를 Open 한다.
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
pagePopup: function(flag, url, params){
|
|
|
|
|
|
|
|
var popUrl = url;
|
|
|
|
|
|
|
|
popUrl += "?tilesDef=popup";
|
|
|
|
|
|
|
|
if(!(params == undefined || params == null)){
|
|
|
|
|
|
|
|
popUrl += "&";
|
|
|
|
|
|
|
|
popUrl += params;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
var popTitle = '';
|
|
|
|
|
|
|
|
var popOption = '';
|
|
|
|
|
|
|
|
switch (flag) {
|
|
|
|
|
|
|
|
case "insert": //등록
|
|
|
|
|
|
|
|
popTitle = "사용자 신규등록";
|
|
|
|
|
|
|
|
popOption = "width=1100px, height=700px, resizable=no, scrollbars=yes, location=no, top=50px, left=50px";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "detail": //상세
|
|
|
|
|
|
|
|
popTitle = "사용자 상세";
|
|
|
|
|
|
|
|
popOption = "width=1100px, height=700px, resizable=no, scrollbars=yes, location=no, top=50px, left=50px";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.open(popUrl, popTitle ,popOption);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 상세 팝업 조회 버튼 클릭
|
|
|
|
|
|
|
|
-선택한 신청의 상세 조회 팝업을 OPEN 한다.
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
fnClickRegBtn: function(props){
|
|
|
|
|
|
|
|
var rowData = props.grid.getRow(props.rowKey);
|
|
|
|
|
|
|
|
var params = "";
|
|
|
|
|
|
|
|
params += "selectedId=" + rowData.uniqId;
|
|
|
|
|
|
|
|
XitUserRegMng_list.pagePopup('detail', '<c:url value="/framework/biz/mng/usr/UserRegMng_edit.do"/>', params);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const gridDatasource = { //DataSource
|
|
|
|
|
|
|
|
/* -----------------------
|
|
|
|
|
|
|
|
* DataSource API Setting
|
|
|
|
|
|
|
|
----------------------- */
|
|
|
|
|
|
|
|
//initialRequest: true, // 화면 load시 조회 안함 - default
|
|
|
|
|
|
|
|
api: {
|
|
|
|
|
|
|
|
readData: {
|
|
|
|
|
|
|
|
url: '<c:url value="/framework/biz/mng/usr/UserRegMng_list.ajax"/>'
|
|
|
|
|
|
|
|
, method: 'get'
|
|
|
|
|
|
|
|
, serializer: (params) => {
|
|
|
|
|
|
|
|
return fnAddPageInfo(document.frmSearch, params);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GRID = TuiGrid.of(gridOptions, gridDatasource, (res) => {
|
|
|
|
|
|
|
|
console.log('Grid~~~~~~~~~');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%--
|
|
|
|
|
|
|
|
/*등록 버튼 Event 설정
|
|
|
|
|
|
|
|
등록 팝업을 OPEN 한다.*/
|
|
|
|
|
|
|
|
$('#btnRegist').on({
|
|
|
|
|
|
|
|
click: function(){
|
|
|
|
|
|
|
|
XitUserRegMng_list.pagePopup('insert', '<c:url value="/framework/biz/mng/usr/UserRegMng_input.do"/>');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//삭제 버튼 Event 설정
|
|
|
|
|
|
|
|
$('#btnDelete').on({
|
|
|
|
|
|
|
|
click: function(){
|
|
|
|
|
|
|
|
if(confirm("삭제하시겠습니까?")){
|
|
|
|
|
|
|
|
var checkArr = instance.getCheckedRows();
|
|
|
|
|
|
|
|
var checkedIds = "";
|
|
|
|
|
|
|
|
checkArr.forEach(function(item, index){
|
|
|
|
|
|
|
|
checkedIds += (item.userTy +":"+item.userId);
|
|
|
|
|
|
|
|
if(checkArr.length -1 > index){
|
|
|
|
|
|
|
|
checkedIds += ",";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
document.frmSearch.checkedIdForDel.value=checkedIds;
|
|
|
|
|
|
|
|
XitUserRegMng_list.removeData();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
--%>
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 조회
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
findData : function(){
|
|
|
|
|
|
|
|
console.log($('#frmSearch').serialize())
|
|
|
|
|
|
|
|
GRID.reloadData();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 등록
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
addData : function(){
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 수정
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
modifyData : function(){
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 데이터 삭제
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
removeData : function(){
|
|
|
|
|
|
|
|
var param = $("#frmSearch").serialize();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
url : "/framework/biz/mng/usr/UserRegMng_deletes_proc.do",
|
|
|
|
|
|
|
|
data : param,
|
|
|
|
|
|
|
|
type : "post",
|
|
|
|
|
|
|
|
dataType : "json",
|
|
|
|
|
|
|
|
success : function(data) {
|
|
|
|
|
|
|
|
alert(data.resp.message);
|
|
|
|
|
|
|
|
XitUserRegMng_list.findData();
|
|
|
|
|
|
|
|
window.close();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
error: function(){
|
|
|
|
|
|
|
|
|
|
|
|
/* ******************************
|
|
|
|
|
|
|
|
* Grid 환경 설정
|
|
|
|
|
|
|
|
****************************** */
|
|
|
|
|
|
|
|
var GridConfig = new XitTuiGridConfig();
|
|
|
|
|
|
|
|
GridConfig.setOptGridId('grid'); //Grid를 출력할 Element ID(해당 Element에 Grid가 출력 됨)
|
|
|
|
|
|
|
|
GridConfig.setOptGridHeight(270); //Grid 높이(단위: px)
|
|
|
|
|
|
|
|
GridConfig.setOptRowHeight(20); //Grid row 높이(단위: px)
|
|
|
|
|
|
|
|
GridConfig.setOptRowHeaderType('checkbox'); //Row 첫번째 Cell 타입(rowNum: 순번, checkbox: 체크박스, '': 아무것도 출력 안함)
|
|
|
|
|
|
|
|
GridConfig.setOptPageOptions({ //페이징(Pagination) 옵션
|
|
|
|
|
|
|
|
useClient: true //Client Paging 여부(true 설정 시 클라이언트 자체 페이징 처리. 서버호출 X)
|
|
|
|
|
|
|
|
,perPage: 10 //페이지당 표시 건수
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
GridConfig.setOptColumnOptions({ //컬럼고정 옵션
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
GridConfig.setOptDataSource({ //DataSource
|
|
|
|
|
|
|
|
/* -----------------------
|
|
|
|
|
|
|
|
* DataSource Config Setting
|
|
|
|
|
|
|
|
* -설정항목은 Global 적용 되며
|
|
|
|
|
|
|
|
* -API별 적용을 원할 경우 각 API 안에 작성 가능(우선순위: 개별->글로벌)
|
|
|
|
|
|
|
|
----------------------- */
|
|
|
|
|
|
|
|
//contentType: 'application/json',
|
|
|
|
|
|
|
|
//headers: { 'x-custom-header': 'custom-header' },
|
|
|
|
|
|
|
|
initialRequest: true, //디폴트 값은 true(false: 인스턴스 생성 시 요청은 보내지 않음. 이런 경우 "instance.reloadData()"를 사용하여 요청 가능)
|
|
|
|
|
|
|
|
//serializer: function(params) {
|
|
|
|
|
|
|
|
//return $(document.frmSearch).serialize();
|
|
|
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
/* -----------------------
|
|
|
|
|
|
|
|
* DataSource API Setting
|
|
|
|
|
|
|
|
----------------------- */
|
|
|
|
|
|
|
|
api: {
|
|
|
|
|
|
|
|
readData : {
|
|
|
|
|
|
|
|
url: '<c:url value="/framework/biz/mng/usr/UserRegMng_list.ajax"/>', method: 'GET'
|
|
|
|
|
|
|
|
,initParams: {}
|
|
|
|
|
|
|
|
,serializer: function(params) {
|
|
|
|
|
|
|
|
var form = document.frmSearch;
|
|
|
|
|
|
|
|
var serializeParam = $(form).serialize();
|
|
|
|
|
|
|
|
for(var key in params){
|
|
|
|
|
|
|
|
if(key=='perPage'){
|
|
|
|
|
|
|
|
if(params[key]==undefined)
|
|
|
|
|
|
|
|
serializeParam +='&'+key+'=-1';
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
serializeParam +='&'+key+'='+params[key];
|
|
|
|
|
|
|
|
}else
|
|
|
|
|
|
|
|
serializeParam +='&'+key+'='+params[key];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return serializeParam;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
/* ========================
|
|
|
|
,createData: { url: '', method: 'POST'}
|
|
|
|
* 유효성 검증
|
|
|
|
,updateData: { url: '', method: 'PUT'}
|
|
|
|
======================== */
|
|
|
|
,modifyData: { url: '', method: 'PUT'}
|
|
|
|
validate : function(flag){
|
|
|
|
,deleteData: { url: '', method: 'DELETE'}
|
|
|
|
switch(flag){
|
|
|
|
}
|
|
|
|
case 'delete' :
|
|
|
|
});
|
|
|
|
/* 필수값 설정 */
|
|
|
|
GridConfig.setOptHeader({
|
|
|
|
var dataSet = instance.getData(); //Grid에 출력된 DataSet
|
|
|
|
}); //Grid 헤더 정보(헤더 셀 병합 필요 시 설정)
|
|
|
|
var arrCheckedRowKey = instance.getCheckedRowKeys(); //선택한 row의 key값( 선택된 row 정보가 필요 시 "getCheckedRows()" )
|
|
|
|
GridConfig.setOptColumns([ //Grid 컬럼 정보(명칭,매핑 field, 기타옵션 등)
|
|
|
|
// var arrCheckedRow = instance.getCheckedRows(); //선택한 row
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '번호',
|
|
|
|
/* 유효성 확인 */
|
|
|
|
name: 'rowNum',
|
|
|
|
if(dataSet.length==0){
|
|
|
|
width: 50,
|
|
|
|
alert("조회된 결과가 없습니다.");
|
|
|
|
sortable: false,
|
|
|
|
return false;
|
|
|
|
align: 'center',
|
|
|
|
|
|
|
|
renderer: {
|
|
|
|
|
|
|
|
type : RowNumberRenderer
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '아이디',
|
|
|
|
|
|
|
|
name: 'userId',
|
|
|
|
|
|
|
|
width: 160,
|
|
|
|
|
|
|
|
sortable: true,
|
|
|
|
|
|
|
|
sortingType: 'desc',
|
|
|
|
|
|
|
|
align: 'center',
|
|
|
|
|
|
|
|
renderer: {
|
|
|
|
|
|
|
|
type: CustomButtonRenderer,
|
|
|
|
|
|
|
|
options: {
|
|
|
|
|
|
|
|
formatter : function(props){
|
|
|
|
|
|
|
|
var rowData = props.grid.getRow(props.rowKey);
|
|
|
|
|
|
|
|
var obj = {
|
|
|
|
|
|
|
|
formatter : rowData.userId
|
|
|
|
|
|
|
|
,element : "text"
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
if(arrCheckedRowKey.length==0) {
|
|
|
|
}
|
|
|
|
alert("선택된 자료가 없습니다.");
|
|
|
|
,eventFunction: XitUserRegMng_list.fnClickRegBtn
|
|
|
|
return false;
|
|
|
|
,eventType : "click"
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 페이지 이동
|
|
|
|
|
|
|
|
-외부사이트 링크가 필요 시 사용(내부코드는 각 페이지에 맞게 수정, ex>https://www.gov.kr/portal/main )
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
pageLink: function(flag, url, params){
|
|
|
|
|
|
|
|
switch (flag) {
|
|
|
|
|
|
|
|
case "move": //페이지 이동
|
|
|
|
|
|
|
|
document.frmSearch.searchKeyword.value = "";
|
|
|
|
|
|
|
|
document.frmSearch.action = url;
|
|
|
|
|
|
|
|
document.frmSearch.submit();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "popup": //팝업 OPEN
|
|
|
|
|
|
|
|
XitUserRegMng_list.pagePopup(flag, url, params);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 페이지 Open
|
|
|
|
|
|
|
|
-팝업페이지를 Open 한다.
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
pagePopup: function(flag, url, params){
|
|
|
|
|
|
|
|
var popUrl = url;
|
|
|
|
|
|
|
|
popUrl += "?tilesDef=popup";
|
|
|
|
|
|
|
|
if(!(params == undefined || params == null)){
|
|
|
|
|
|
|
|
popUrl += "&";
|
|
|
|
|
|
|
|
popUrl += params;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var popTitle = '';
|
|
|
|
|
|
|
|
var popOption = '';
|
|
|
|
|
|
|
|
switch (flag) {
|
|
|
|
|
|
|
|
case "insert": //등록
|
|
|
|
|
|
|
|
popTitle = "사용자 신규등록";
|
|
|
|
|
|
|
|
popOption = "width=1100px, height=700px, resizable=no, scrollbars=yes, location=no, top=50px, left=50px";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "detail": //상세
|
|
|
|
|
|
|
|
popTitle = "사용자 상세";
|
|
|
|
|
|
|
|
popOption = "width=1100px, height=700px, resizable=no, scrollbars=yes, location=no, top=50px, left=50px";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.open(popUrl, popTitle ,popOption);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/* ========================
|
|
|
|
|
|
|
|
* 상세 팝업 조회 버튼 클릭
|
|
|
|
|
|
|
|
-선택한 신청의 상세 조회 팝업을 OPEN 한다.
|
|
|
|
|
|
|
|
======================== */
|
|
|
|
|
|
|
|
fnClickRegBtn: function(props){
|
|
|
|
|
|
|
|
var rowData = props.grid.getRow(props.rowKey);
|
|
|
|
|
|
|
|
var params = "";
|
|
|
|
|
|
|
|
params += "selectedId=" + rowData.uniqId;
|
|
|
|
|
|
|
|
XitUserRegMng_list.pagePopup('detail', '<c:url value="/framework/biz/mng/usr/UserRegMng_edit.do"/>', params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '사용자 이름',
|
|
|
|
|
|
|
|
name: 'userNm',
|
|
|
|
|
|
|
|
width: 120,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '사용자 이메일',
|
|
|
|
|
|
|
|
name: 'emailAdres',
|
|
|
|
|
|
|
|
minWidth: 160,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '전화번호',
|
|
|
|
|
|
|
|
name: 'moblphonNo',
|
|
|
|
|
|
|
|
width: 120,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '등록일',
|
|
|
|
|
|
|
|
name: 'sbscrbDe',
|
|
|
|
|
|
|
|
width: 150,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
header: '가입상태',
|
|
|
|
|
|
|
|
name: 'userSttusCode',
|
|
|
|
|
|
|
|
width: 110,
|
|
|
|
|
|
|
|
sortable: false,
|
|
|
|
|
|
|
|
align: 'center'
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
|
|
|
|
var Grid = tui.Grid;
|
|
|
|
|
|
|
|
var instance = GridConfig.instance(Grid); //Grid 인스턴스
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ********************************************************
|
|
|
|
$(document).ready(function(){
|
|
|
|
* 처리결과메시지 출력
|
|
|
|
XitUserRegMng_list.init();
|
|
|
|
******************************************************** */
|
|
|
|
});
|
|
|
|
<c:if test="${!empty message}">alert("${message}");</c:if>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|