페이지 수정
parent
2cf5bd6974
commit
f0f285bb0e
|
|
@ -53,15 +53,15 @@ public class ImgPaginationRenderer extends AbstractPaginationRenderer implements
|
|||
public void initVariables() {
|
||||
|
||||
firstPageLabel = "";//""<a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_pre10.gif' border=0/></a> ";
|
||||
previousPageLabel = "<li>\n" +
|
||||
"\t\t\t\t\t <a href=\"#\" aria-label=\"Previous\">\n" +
|
||||
previousPageLabel = "<li class=\"page-item\">\n" +
|
||||
"\t\t\t\t\t <a class=\"page-link\" href=\"#\" aria-label=\"Previous\">\n" +
|
||||
"\t\t\t\t\t\t<span aria-hidden=\"true\">«</span>\n" +
|
||||
"\t\t\t\t\t </a>\n" +
|
||||
"\t\t\t\t\t</li>";
|
||||
currentPageLabel = "<li class = \"active\"><a href=\"#\">{0}</a></li>";
|
||||
otherPageLabel = "<li><a href=\"#\" onclick=\"{0}({1}); return false;\">{2}</a></li>";
|
||||
nextPageLabel = "<li>\n" +
|
||||
"\t\t\t\t\t <a href=\"#\" aria-label=\"Next\">\n" +
|
||||
currentPageLabel = "<li class = \"active\"><a class=\"page-link\" href=\"#\">{0}</a></li>";
|
||||
otherPageLabel = "<li class=\"page-item\"><a class=\"page-link\" href=\"#\" onclick=\"{0}({1}); return false;\">{2}</a></li>";
|
||||
nextPageLabel = "<li class=\"page-item\">\n" +
|
||||
"\t\t\t\t\t <a class=\"page-link\" href=\"#\" aria-label=\"Next\">\n" +
|
||||
"\t\t\t\t\t\t<span aria-hidden=\"true\">»</span>\n" +
|
||||
"\t\t\t\t\t </a>\n" +
|
||||
"\t\t\t\t\t</li>";
|
||||
|
|
|
|||
|
|
@ -56,11 +56,11 @@
|
|||
<td class="td_date"><c:out value="${item.save_date}" /></td>
|
||||
<td>
|
||||
<c:choose>
|
||||
<c:when test="${item.status eq '0'}"><span class="label label-warning">수집</span> </c:when>
|
||||
<c:when test="${item.status eq '1'}"><span class="label label-danger">검증실패</span> </c:when>
|
||||
<c:when test="${item.status eq '2'}"><span class="label label-primary">검증</span> </c:when>
|
||||
<c:when test="${item.status eq '3'}"><span class="label label-danger">반영실패</span> </c:when>
|
||||
<c:when test="${item.status eq '4'}"><span class="label label-success">반영</span> </c:when>
|
||||
<c:when test="${item.status eq '0'}"><span class="card-warning">수집</span> </c:when>
|
||||
<c:when test="${item.status eq '1'}"><span class="card-default">검증실패</span> </c:when>
|
||||
<c:when test="${item.status eq '2'}"><span class="card-warning">검증</span> </c:when>
|
||||
<c:when test="${item.status eq '3'}"><span class="card-default">반영실패</span> </c:when>
|
||||
<c:when test="${item.status eq '4'}"><span class="card-success">반영</span> </c:when>
|
||||
</c:choose>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -72,9 +72,9 @@
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="text">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
<ul class="pagination justify-content-center">
|
||||
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
||||
<form:hidden path="pageIndex" />
|
||||
</form:form>
|
||||
|
|
|
|||
|
|
@ -54,9 +54,9 @@
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="text-center">
|
||||
<nav aria-label="Page navigation example">
|
||||
<ul class="pagination">
|
||||
<div class="text">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination justify-content-center">
|
||||
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
||||
<form:hidden path="pageIndex" />
|
||||
</form:form>
|
||||
|
|
|
|||
|
|
@ -71,9 +71,9 @@
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="text">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
<ul class="pagination justify-content-center">
|
||||
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
||||
<form:hidden path="pageIndex" />
|
||||
</form:form>
|
||||
|
|
|
|||
|
|
@ -92,9 +92,9 @@
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="text">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
<ul class="pagination justify-content-center">
|
||||
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
||||
<form:hidden path="pageIndex" />
|
||||
</form:form>
|
||||
|
|
|
|||
Loading…
Reference in New Issue