Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dropdown (0.49 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

                copyBeanToBean(form, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
                return entity;
            });
        }
    
        /**
         * Registers protocol scheme items for the dropdown list.
         *
         * @param data the render data
         */
        protected void registerProtocolSchemeItems(final RenderData data) {
            final List<Map<String, String>> itemList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

                        .distinct()
                        .toArray(n -> new String[n])));
                return entity;
            });
        }
    
        /**
         * Registers role type items for the dropdown list.
         *
         * @param data the render data
         */
        protected void registerRoleTypeItems(final RenderData data) {
            RenderDataUtil.register(data, "roleTypeItems", roleTypeService.getRoleTypeList());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            }
            RenderDataUtil.register(data, "webConfigItems", itemList);
        }
    
        /**
         * Creates a map item with label and value for use in dropdown lists and form options.
         *
         * @param label the display label for the item
         * @param value the value associated with the item
         * @return a map containing the label and value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

                return entity;
            });
        }
    
        /**
         * Registers roles and labels for the dropdown lists.
         *
         * @param data the render data
         */
        protected void registerRolesAndLabels(final RenderData data) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                    entity.setPassword(encodedPassword);
                }
                return entity;
            });
        }
    
        /**
         * Creates a label/value map item for dropdowns or list displays.
         *
         * @param label the display label for the item
         * @param value the value associated with the item
         * @return a map containing the label and value entries
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top