Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: DOCU-1533

...

Include Page
_referencing fields shortcut info
_referencing fields shortcut info

You can use all common field properties and the following.

Include Page
_Common select field properties
_Common select field properties

...

textInputAllowed

optional, default is false

When true , the user can type into the select field to filter the available options. The filteringMode property defines how the options are filtered: contains or starts with.

When false , the field behaves like a standard select field where the user can not enter text. Clicking the field opens the dropdown with options.

(warning) This property does not make it possible to enter new values into the field. The user can only choose from existing options.

filteringMode

Vaadin FilteringMode . Default is off. Available values are: contains and startswith .

(warning) To enable filtering, you must also:

  • Set the pageLength property to a value greater than 0 .
  • Set the textInputAllowed property to true .

pageLength

optional, default is 0

To enable paging and filtering, value must be an integer > 0 . The 0 setting disables paging and filtering.

...