master
parent
ef0294bf5e
commit
596644821e
|
|
@ -75,12 +75,20 @@ public class ImgPaginationRenderer extends AbstractPaginationRenderer implements
|
||||||
*/
|
*/
|
||||||
public void initVariables() {
|
public void initVariables() {
|
||||||
|
|
||||||
firstPageLabel = "<li><a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_pre10.gif' border=0/></a> ";
|
firstPageLabel = "";//"<li><a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_pre10.gif' border=0/></a> ";
|
||||||
previousPageLabel = "<a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_pre1.gif' border=0/></a> ";
|
previousPageLabel = "<li>\n" +
|
||||||
|
"\t\t\t\t\t <a 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 = "<strong>{0}</strong> ";
|
currentPageLabel = "<strong>{0}</strong> ";
|
||||||
otherPageLabel = "<a href=\"#\" onclick=\"{0}({1}); return false;\">{2}</a> ";
|
otherPageLabel = "<li><a href=\"#\" onclick=\"{0}({1}); return false;\">{2}</a></li>";
|
||||||
nextPageLabel = "<a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_next1.gif' border=0/></a> ";
|
nextPageLabel = "<li>\n" +
|
||||||
lastPageLabel = "<a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_next10.gif' border=0/></a> ";
|
"\t\t\t\t\t <a 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>";
|
||||||
|
lastPageLabel = "";//"<a href=\"#\" onclick=\"{0}({1}); return false;\">" + "<image src='" + servletContext.getContextPath() + "/images/egovframework/cmmn/btn_page_next10.gif' border=0/></a> ";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -56,8 +56,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<table class="list-table">
|
<table class="list-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr><th colspan="6">지도사용 요청</th></tr>
|
<tr><th colspan="6">지도사용 요청</th></tr>
|
||||||
|
|
@ -95,11 +93,34 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div id="paging" style="width: 100%;">
|
|
||||||
|
<div class="text-center">
|
||||||
|
<nav aria-label="Page navigation">
|
||||||
|
<ul class="pagination" >
|
||||||
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
<ui:pagination paginationInfo="${paginationInfo}" type="image" jsFunction="fn_link_page" />
|
||||||
<form:hidden path="pageIndex" />
|
<form:hidden path="pageIndex" />
|
||||||
</div>
|
|
||||||
</form:form>
|
</form:form>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
<%--
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="${firstIndex-1}" aria-label="Previous">
|
||||||
|
<span aria-hidden="true">«</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="paginationInfo="${pageindex}">1</a></li>
|
||||||
|
<li><a href="#">2</a></li>
|
||||||
|
<li><a href="#">3</a></li>
|
||||||
|
<li><a href="#">4</a></li>
|
||||||
|
<li><a href="#">5</a></li>
|
||||||
|
<li>
|
||||||
|
<a href="#" aria-label="Next">
|
||||||
|
<span aria-hidden="true">»</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
--%>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue