File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%--
Class Name : EgovFileNmSearch.jsp
Description : 프로그램파일명 검색 화면
Modification Information
수정일 수정자 수정내용
------- -------- ---------------------------
2009.03.10 이용 최초 생성
2011.08.31 JJY 경량환경 버전 생성
author : 공통서비스 개발팀 이용
since : 2009.03.10
--%>
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%
/* Image Path 설정 */
String imagePath_icon = "/images/egovframework/sym/mpm/icon/";
String imagePath_button = "/images/egovframework/sym/mpm/button/";
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta http-equiv="content-language" content="ko">
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/post.css?ver=1">
<title>프로그램파일명 검색</title>
<style type="text/css">
h1 {font-size:12px;}
caption {visibility:hidden; font-size:0; height:0; margin:0; padding:0; line-height:0;}
</style>
<script language="javascript1.2" type="text/javaScript">
/* ********************************************************
* 페이징 처리 함수
******************************************************** */
function linkPage(pageNo){
document.progrmManageForm.pageIndex.value = pageNo;
document.progrmManageForm.action = "<c:url value='/sym/prm/EgovProgramListSearch.do'/>";
document.progrmManageForm.submit();
}
/* ********************************************************
* 조회 처리 함수
******************************************************** */
function selectProgramListSearch() {
document.progrmManageForm.pageIndex.value = 1;
document.progrmManageForm.action = "<c:url value='/sym/prm/EgovProgramListSearch.do'/>";
document.progrmManageForm.submit();
}
/* ********************************************************
* 프로그램목록 선택 처리 함수
******************************************************** */
function choisProgramListSearch(vFileNm) {
eval("opener.document.all."+opener.document.all.tmp_SearchElementName.value).value = vFileNm;
if(opener.document.all.progrmFileNm_view){
opener.document.all.progrmFileNm_view.value = vFileNm;
}
window.close();
}
</script>
<style>
.post_main2_div {position: unset;height:unset; width:unset; }
.main2_div2 {width: 760px;}
.main2_div3 {width: 760px;}
.main2_div3 table {width: 760px;}
.main2_div2 button {right: -227px;}
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url('/') no-repeat 95% 50%; /* 화살표 모양의 이미지 */ }
select::-ms-expand { display: none;}
.ad_content {width:unset;}
.ad_mem_list{min-width:720px;}
</style>
</head>
<body>
<form name="progrmManageForm" action ="<c:url value='/sym/prm/EgovProgramListSearch.do'/>" method="post">
<input name="pageIndex" type="hidden" value="<c:out value='${searchVO.pageIndex}'/>"/>
<div class="ad_content" style="margin-left: 1px;box-shadow: none; min-height: unset;">
<div class="ad_con_head">
<div class="ad_head_text" style="width:unset;">
<p class="today_txt">프로그램파일명</p>
</div>
</div>
<div class="ad_subcon" style="width:unset;">
<div class="ad_con_body">
<div class="ad_bo_h3" style="width:unset;">
<div class="board1_div1">
권한명 :
<input id="searchKeyword" name="searchKeyword" type="text" value="<c:out value='${searchVO.searchKeyword}'/>" size="25" title="검색" />
<ul class="board1_div2_ul">
<li><button class="board1_list_btn" onclick="selectProgramListSearch(); return false;">검 색</button></li>
<li><button class="board1_list_btn" onclick="javascript:window.close(); return false;">닫 기</button></li>
</ul>
</div>
</div>
</div>
<p class="mem_count">총 <fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" />건</p>
<div class="ad_mem_list" style="width:unset;">
<table>
<tr>
<th>번호</th>
<th>프로그램파일명</th>
<th>프로그램명</th>
<th>프로그램(상세)</th>
</tr>
<c:forEach var="result" items="${list_progrmmanage}" varStatus="status">
<tr>
<td><c:out value="${(searchVO.pageIndex - 1) * searchVO.pageSize + status.count}"/></td>
<td>
<a href="#LINK" onclick="choisProgramListSearch('<c:out value="${result.progrmFileNm}"/>'); return false;">
<c:out value="${result.progrmFileNm}"/></a>
</td>
<td>
<c:out value="${result.progrmKoreanNm}"/>
</td>
<td>
<c:out value="${result.progrmDc}"/>
</td>
</tr>
</c:forEach>
<c:if test="${empty list_progrmmanage}">
<tr><td colspan="3"><spring:message code="common.nodata.msg" /></td></tr>
</c:if>
</table>
<!-- 페이지 네비게이션 시작 -->
<c:if test="${!empty list_progrmmanage}">
<div class="board1_btn" style="width:unset;">
<ul>
<ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
</ul>
</div>
</c:if>
<!-- //페이지 네비게이션 끝 -->
</div>
</div>
</div>
</form>
</body>
</html>