- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 152 for pagination (0.04 sec)
-
src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp
arg0="${f:h(pager.currentPageNumber)}" arg1="${f:h(pager.allPageCount)}" arg2="${f:h(pager.allRecordCount)}" /> </div> <nav aria-label="..."> </nav> <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 styleClass="page-link" href="list/${pager.currentPageNumber - 1}"> <la:message key="labels.prev_page" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
*/ private boolean existPrePage; /** * Indicates whether a next page exists for pagination. */ private boolean existNextPage; /** * The list of page numbers to display for pagination navigation. */ private List<Integer> pageNumberList; /** * The number of records to display per page. */ private int pageSize; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
* Default constructor for GroupPager. * Initializes the pager with default values for pagination settings. */ public GroupPager() { // Default constructor } /** * Clears all pagination data and search criteria, resetting the pager to its initial state. * This method resets record counts, pagination flags, and search parameters to their default values. */ public void clear() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
} /** * Gets the list of page numbers for pagination. * * @return The list of page numbers */ public List<Integer> getPageNumberList() { return pageNumberList; } /** * Sets the list of page numbers for pagination. * * @param pageNumberList The list of page numbers */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
import org.codelibs.fess.util.ComponentUtil; /** * Pager class for bad word management with pagination support. * Provides pagination functionality for bad word lists. */ public class BadWordPager implements Serializable { private static final long serialVersionUID = 1L; /** Default page size for bad word pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
*/ package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pagination support class for ElevateWord entities. * Provides pagination functionality and holds search form parameters * for elevate word management in the admin interface. */ public class ElevateWordPager implements Serializable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/UserPager.java
*/ package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for handling user list pagination. * This class manages pagination state and user search criteria for the user management interface. */ public class UserPager implements Serializable { /** * Default constructor for UserPager. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
// 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 */ public List<Group> getGroupList(final GroupPager groupPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
import org.codelibs.fess.util.FacetResponse; /** * Data container for search results rendering. * * This class holds all the data needed to render search results in the UI, * including the actual search results, pagination information, facet data, * execution timing, and highlighting parameters. */ public class SearchRenderData { /** List of search result documents. */ protected List<Map<String, Object>> documentItems;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
public SchedulerPager() { super(); } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0)