|
|
|
@ -266,8 +266,8 @@ GridConfig.setOptHeader({
|
|
|
|
|
}); //Grid 헤더 정보(헤더 셀 병합 필요 시 설정)
|
|
|
|
|
GridConfig.setOptColumns([ //Grid 컬럼 정보(명칭,매핑 field, 기타옵션 등)
|
|
|
|
|
{
|
|
|
|
|
header: '사용자 ID',
|
|
|
|
|
name: 'userId',
|
|
|
|
|
header: '계정 ID',
|
|
|
|
|
name: 'userAcnt',
|
|
|
|
|
minWidth: 160,
|
|
|
|
|
sortable: true,
|
|
|
|
|
sortingType: 'desc',
|
|
|
|
@ -329,70 +329,5 @@ var instance = GridConfig.instance(Grid); //Grid 인스턴스
|
|
|
|
|
<c:if test="${!empty message}">alert("${message}");</c:if>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<%-- <div id="page_info"><div id="page_info_align"></div></div>
|
|
|
|
|
<!-- table add start -->
|
|
|
|
|
<div class="default_tablestyle">
|
|
|
|
|
<table summary="사용자부재정보에 대한 목록을 제공한다." cellpadding="0" cellspacing="0">
|
|
|
|
|
<caption>사용자부재 관리</caption>
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col width="25%" >
|
|
|
|
|
<col width="25%" >
|
|
|
|
|
<col width="15%" >
|
|
|
|
|
<col width="15%" >
|
|
|
|
|
<col width="20%" >
|
|
|
|
|
</colgroup>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col" class="f_field" nowrap="nowrap">사용자 ID</th>
|
|
|
|
|
<th scope="col" nowrap="nowrap">사용자 명</th>
|
|
|
|
|
<th scope="col" nowrap="nowrap">부재여부</th>
|
|
|
|
|
<th scope="col" nowrap="nowrap">등록여부</th>
|
|
|
|
|
<th scope="col" nowrap="nowrap">등록일시</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
|
|
<c:forEach var="userAbsnce" items="${userAbsnceList}" varStatus="status">
|
|
|
|
|
<!-- loop 시작 -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<form name="item" method="post" action="<c:url value='/framework/biz/mng/usr/userAbsntMng_edit.do'/>">
|
|
|
|
|
<input type="hidden" name="userId" value="<c:out value="${userAbsnce.userId}"/>">
|
|
|
|
|
<input type="hidden" name="selAbsnceAt" value="<c:out value="${userAbsnceVO.selAbsnceAt}"/>">
|
|
|
|
|
<input type="hidden" name="pageIndex" value="<c:out value='${userAbsnceVO.pageIndex}'/>">
|
|
|
|
|
<input type="hidden" name="searchCondition" value="<c:out value='${userAbsnceVO.searchCondition}'/>">
|
|
|
|
|
<input type="hidden" name="searchKeyword" value="<c:out value="${userAbsnceVO.searchKeyword}"/>">
|
|
|
|
|
<span class="link"><c:out value="${userAbsnce.userId}"/> <input type="submit" onclick="fncSelectUserAbsnce('<c:out value="${userAbsnce.userId}"/>', '<c:out value="${userAbsnce.regYn}"/>'); return false;" value="등록"></span>
|
|
|
|
|
</form>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap="nowrap"><c:out value="${userAbsnce.userNm}"/></td>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<c:if test="${userAbsnce.userAbsnceYn eq 'Y'}" ><c:out value="Y"/></c:if>
|
|
|
|
|
<c:if test="${userAbsnce.userAbsnceYn eq 'N'}" ><c:out value="N"/></c:if>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
|
<c:if test="${userAbsnce.regYn eq 'Y'}" ><c:out value="Y"/></c:if>
|
|
|
|
|
<c:if test="${userAbsnce.regYn eq 'N'}" ><c:out value="N"/></c:if>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap="nowrap"><c:out value="${userAbsnce.mdfcnDt}"/></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
|
|
|
|
|
<c:if test="${empty userAbsnceList}">
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="5">검색된 값이 없습니다.</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</c:if>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 페이지 네비게이션 시작 -->
|
|
|
|
|
<c:if test="${!empty userAbsnceVO.pageIndex }">
|
|
|
|
|
<div id="paging_div">
|
|
|
|
|
<ul class="paging_align">
|
|
|
|
|
<ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</c:if>
|
|
|
|
|
<!-- //페이지 네비게이션 끝 --> --%>
|
|
|
|
|
|
|
|
|
|