Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 152 for pagination (0.04 sec)

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

        private boolean existNextPage;
    
        /**
         * The list of page numbers to display in the pagination component.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records to display per page.
         */
        private int pageSize;
    
        /**
         * The current page number (1-based) for pagination.
         */
        private int currentPageNumber;
    
        /**
         * Crawling information ID.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

        /** Indicates if a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
        /** Page size for pagination. */
        private int pageSize;
    
        /** Current page number for pagination. */
        private int currentPageNumber;
    
        /** Boost document ID for search filtering. */
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for character mapping management with pagination support.
     * Provides pagination functionality for character mapping lists.
     */
    public class CharMappingPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

                                        </div>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
                                                <c:if test="${pager.existPrePage}">
                                                    <li class="page-item"><la:link
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        @Resource
        private KeyMatchHelper keyMatchHelper;
    
        /** Service for key match operations. */
        @Resource
        private KeyMatchService keyMatchService;
    
        /** Pager for key match list pagination. */
        @Resource
        private KeyMatchPager keyMatchPager;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        }
    
        /**
         * Gets the list of page numbers for pagination display.
         * This list is typically used to render pagination controls in the UI.
         *
         * @return the list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination display.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

        /** The user service for managing user settings. */
        @Resource
        private UserService userService;
    
        /**
         * Retrieves user settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing user settings list
         */
        // GET /api/admin/user/settings
        // PUT /api/admin/user/settings
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

    /**
     * Pager class for related query management functionality.
     * Provides pagination support for related query operations including
     * search, display, and navigation through related query results.
     */
    public class RelatedQueryPager implements Serializable {
        private static final long serialVersionUID = 1L;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Set up pagination data for search results.
         *
         * @param data the render data to populate
         * @param form the search form containing pagination parameters
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
            // page navi
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for search log pagination and filtering.
     *
     * This class provides pagination functionality for various types of search logs
     * including search logs, click logs, favorite logs, and user information logs.
     * It also supports different aggregation types for analytics and reporting.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top