<!-- div ul li 로 만들어본 리스트.... -->
<%-- <div id="divMyList">
<form id='frmMyList' name='frmMyList' method='post'>
<input type='hidden' id='hdnRequestId' name='request_id'/>
<div class="li_table">
<ul class="subject">
<li class="col">번호</li>
<li>제목</li>
<li>날짜</li>
</ul>
<c:forEach items="${contractList}" var="list" varStatus="status">
<c:choose>
<c:when test="${userInfo.userType == '1'}">
<ul>
<li class="col">${status.count}</li>
<li><a href="#" onclick="fnMyPageReqDetail('${list.req_id}');">${list.customer_req}</a></li>
<li><fmt:formatDate value="${list.create_date}" pattern="yyyy-MM-dd HH:mm"/></li>
</ul>
</c:when>
<c:when test="${userInfo.userType == '2'}">
<ul>
<li class="col">${status.count}</li>
<li><a href="#" onclick="fnMyPageReqDetail('${list.req_id}');">${list.salesman_benefit}</a></li>
<li><fmt:formatDate value="${list.create_date}" pattern="yyyy-MM-dd HH:mm"/></li>
</ul>
</c:when>
<c:otherwise>
<div>등록된 견적등록이 없습니다</div>
</c:otherwise>
</c:choose>
</c:forEach>
</div>
</form>
</div> --%>
<!-- div ul li 로 만들어본 리스트....END -->
':::: 개발 :::: > └ JSP & SPRING' 카테고리의 다른 글
스프링 생명주기( 컨테이너 / 빈 / 빈 스코프 ) (0) | 2015.05.11 |
---|---|
get 파라미터 URLEncoder.encode (0) | 2015.05.08 |
xml 에서 필드 set 할때 (2) | 2015.04.30 |
spring autowired 정리 (0) | 2015.04.20 |
이클립스 다이나믹 웹 프로젝트로 변환 (0) | 2014.05.16 |
spring json ajax 통신 (0) | 2014.03.31 |
로컬아이피 체크 (0) | 2014.03.26 |
젠킨스(jenkins) bitbucket (비공개 git) 설정할때.. (0) | 2014.03.25 |