- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for pagination (0.05 sec)
-
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/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) -
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) -
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) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp
<div class="row"> <div class="col-sm-12 text-center"> <ul class="pagination pagination-sm justify-content-center"> <c:if test="${existPrevPage}"> <li class="page-item"><la:link
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 24 13:09:22 UTC 2020 - 20K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.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: Wed Feb 12 20:25:27 UTC 2020 - 10.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.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 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.Map; /** * A response list that extends List functionality and includes pagination and search metadata. * This class wraps search results with pagination information, facet responses, and query statistics. * It implements the List interface to provide standard list operations while adding search-specific
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index(final SearchForm form) { return asListHtml(); } /** * Displays the duplicate host list with pagination. * * @param pageNumber the page number to display * @param form the search form * @return HTML response for the duplicate host list page */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
/** Number of results per page */ public String pageSize; /** Current page number for pagination */ public String currentPageNumber; /** Total number of records found */ public String allRecordCount; /** Total number of pages for pagination */ public String allPageCount; /** Flag indicating if there is a next page */ public boolean existNextPage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1)