Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for existNextPage (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

            this.existPrePage = existPrePage;
        }
    
        public boolean isExistNextPage() {
            return existNextPage;
        }
    
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

            existPrevPage = startWithOffset > 0;
            existNextPage = startWithOffset < (long) (allPageCount - 1) * (long) pageSize;
            currentPageNumber = start / pageSize + 1;
            if (existNextPage && size() < pageSize) {
                // collapsing
                existNextPage = false;
                allPageCount = currentPageNumber;
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                    </c:forEach>
                                                    <c:if test="${existNextPage}">
                                                        <li
                                                                class="page-item<c:if test="${!existNextPage}"> disabled</c:if>">
                                                            <la:link
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Sep 24 13:09:22 UTC 2020
    - 20K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

                                                </c:forEach>
                                                <c:if test="${pager.existNextPage}">
                                                    <li class="page-item"><la:link
                                                            styleClass="page-link"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp

    						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}">
    				<li class="page-item disabled"><a
    						class="page-link" href="#"><la:message
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/searchResults.jsp

    				</li>
    			</c:forEach>
    			<c:if test="${existNextPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Next"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp

                                                </c:forEach>
                                                <c:if test="${pager.existNextPage}">
                                                    <li class="page-item"><la:link
                                                            styleClass="page-link"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                                                </c:forEach>
                                                <c:if test="${pager.existNextPage}">
                                                    <li class="page-item"><la:link
                                                            styleClass="page-link"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                                                </c:forEach>
                                                <c:if test="${pager.existNextPage}">
                                                    <li class="page-item"><la:link
                                                            styleClass="page-link"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
Back to top