- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for doSearch (0.26 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
* Performs a search operation with the provided form data. * * @param form the list form containing search criteria * @return HTML response with search results */ protected HtmlResponse doSearch(final ListForm form) { validate(form, messages -> {}, this::asListHtml); if (StringUtil.isBlank(form.q)) { // query matches on all documents.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
if (session != null && form.num != null) { session.setAttribute(Constants.RESULTS_PER_PAGE, form.num); } }); } return doSearch(form); } /** * The previous page. * @param form The search form. * @return The HTML response. */ @Execute public HtmlResponse prev(final SearchForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0)