Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 685 for pager (0.15 sec)

  1. src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp

    						styleClass="page-link"
    						href="list/${p}">${p}</la:link></li>
    			</c:forEach>
    			<c:if test="${pager.existNextPage}">
    				<li class="page-item"><la:link
    						styleClass="page-link"
    						href="list/${pager.currentPageNumber + 1}">
    						<la:message key="labels.next_page" />
    					</la:link></li>
    			</c:if>
    			<c:if test="${!pager.existNextPage}">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        private void updatePagerByAgg(final SearchLogPager pager, final int size) {
            pager.setAllPageCount(1);
            pager.setAllRecordCount(size);
            pager.setCurrentPageNumber(1);
            pager.setExistNextPage(false);
            pager.setExistPrePage(false);
            pager.setPageSize(pager.getPageSize());
        }
    
        private void createSearchLogCondition(final SearchLogPager pager, final SearchLogCB cb) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                                    <li
                                                            <c:if test="${p == pager.currentPageNumber}">class="page-item active"</c:if>>
                                                        <la:link
                                                                styleClass="page-link"
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp

                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 9.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp

                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 24 13:43:18 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp

                                        <c:set var="pager" value="${webAuthPager}" scope="request"/>
                                        <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                        <c:if test="${pager.currentPageNumber > pager.allPageCount}">
                                            <script>location.href = "${contextPath}/admin/webauth/list/${pager.allPageCount}";</script>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 24 13:43:18 GMT 2020
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java

            validateApi(body, messages -> {});
            final RolePager pager = copyBeanToNewBean(body, RolePager.class);
            final List<Role> list = roleService.getRoleList(pager);
            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                            .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp

                                    <c:set var="pager" value="${pathMapPager}" scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
                                        <script>location.href = "${contextPath}/admin/pathmap/list/${pager.allPageCount}";</script>
                                    </c:if>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

            validateApi(body, messages -> {});
            final KeyMatchPager pager = copyBeanToNewBean(body, KeyMatchPager.class);
            final List<KeyMatch> list = keyMatchService.getKeyMatchList(pager);
            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                            .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

            final RelatedContentPager pager = copyBeanToNewBean(body, RelatedContentPager.class);
            final List<RelatedContent> list = relatedContentService.getRelatedContentList(pager);
            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                            .total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
Back to top