Widgets > wijpager > Change Paging Modes > NumericFirstLast Paging |
The numericFirstLast paging mode is a set of pagination controls consisting of both numbered link buttons to access pages directly and First and Last link buttons to access the first and last pages directly.
<body>
tags of the page.
<div id="pagerNumericFirstLast">
</div>
<script id="scriptInit" type="text/javascript">
$(document).ready(function () {
$("#pagerNumericFirstLast").wijpager({ pageCount: 150, pageIndex: 40, mode: "numericFirstLast",
firstPageClass: "", previousPageClass: "", nextPageClass: "", lastPageClass: ""
});
});
</script>