앱)jstl list search result table sample 예제
<table class="table_tp1">
<caption class="hide-caption">list</caption>
<colgroup>
<col width="15%">
<col width="15%">
<col width="15%">
<col width="*">
</colgroup>
<thead>
<tr>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
</tr>
</thead>
<tbody>
<c:choose>
<c:when test="${null != list && !empty list}">
<c:forEach var="list" items="${list}" varStatus="lineIndex">
<tr<c:if test="${lineIndex.count % 2 == 0}">class="line_c"</c:if>>
<td class="al_c2">${list.kkk}</td>
<td class="al_c"><a href="#" onclick="detail('${list.kkk}')">kkkk</a></td>
<td class="al_c">${list.kkk}</td>
<td class="al_c">${list.kkk}</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="4" class="al_c2">No results were found for your search.</td>
</tr>
</c:otherwise>
</c:choose>
</tbody>
</table>
<caption class="hide-caption">list</caption>
<colgroup>
<col width="15%">
<col width="15%">
<col width="15%">
<col width="*">
</colgroup>
<thead>
<tr>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
<th scope="col"><span>AAAA</span></th>
</tr>
</thead>
<tbody>
<c:choose>
<c:when test="${null != list && !empty list}">
<c:forEach var="list" items="${list}" varStatus="lineIndex">
<tr<c:if test="${lineIndex.count % 2 == 0}">class="line_c"</c:if>>
<td class="al_c2">${list.kkk}</td>
<td class="al_c"><a href="#" onclick="detail('${list.kkk}')">kkkk</a></td>
<td class="al_c">${list.kkk}</td>
<td class="al_c">${list.kkk}</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<tr>
<td colspan="4" class="al_c2">No results were found for your search.</td>
</tr>
</c:otherwise>
</c:choose>
</tbody>
</table>
'백엔드개발 > 자바스프링' 카테고리의 다른 글
앱)JSP(JavaServer Pages)에 대해서 (0) | 2018.07.03 |
---|---|
앱)AWS SES Email Util java spring 예제 샘플 (0) | 2018.06.27 |
앱)jstl sample 예제 (0) | 2018.06.12 |
앱)java spring framework excel export jstl (0) | 2018.06.11 |
앱)jsp jstl jquery basic structure sample 기본 템플릿 (0) | 2018.06.11 |