Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for Pager (0.01 sec)

  1. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.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}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

        /** Configuration settings for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of failure URLs based on the provided pager criteria.
         *
         * @param failureUrlPager the pager containing search criteria and pagination settings
         * @return a list of FailureUrl entities matching the criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/GroupService.java

        public GroupService() {
            // Default constructor
        }
    
        /**
         * Retrieves a paginated list of groups based on the provided pager criteria.
         * Updates the pager with pagination information including page numbers and ranges.
         *
         * @param groupPager the pager containing pagination and search criteria
         * @return a list of groups matching the criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/RoleService.java

        @Resource
        protected UserBhv userBhv;
    
        /**
         * Constructor.
         */
        public RoleService() {
            super();
        }
    
        /**
         * Gets a list of roles based on the pager.
         * @param rolePager The pager for roles.
         * @return A list of roles.
         */
        public List<Role> getRoleList(final RolePager rolePager) {
    
            final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken.jsp

                                    </div>
                                    <c:set var="pager" value="${accessTokenPager}"
                                           scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/reqheader/admin_reqheader.jsp

                                        </div>
    
                                        <c:set var="pager" value="${reqHeaderPager}"
                                               scope="request"/>
                                        <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                        <c:if test="${pager.currentPageNumber > pager.allPageCount}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  7. 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>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

    package org.codelibs.fess.app.service;
    
    import java.util.List;
    
    import org.codelibs.core.beans.util.BeanUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.pager.RelatedContentPager;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.config.cbean.RelatedContentCB;
    import org.codelibs.fess.opensearch.config.exbhv.RelatedContentBhv;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                            <c:set var="pager" value="${fileConfigPager}" 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/fileconfig/list/${pager.allPageCount}";</script>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

        }
    
        // Test constructor initialization
        public void test_constructor() {
            // Verify suffix is set correctly
            assertEquals(PagerCreator.SUFFIX, "Pager");
    
            // Verify name suffix is set
            assertEquals("Pager", pagerCreator.getNameSuffix());
    
            // Verify instance def is SESSION
            assertEquals(InstanceDefFactory.SESSION, pagerCreator.getInstanceDef());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top