The taglist
input allows users to search through a list of options and apply any number of tags. Users can also drag and drop tags to re-order:
The options
prop can accept three different formats of values:
value
and label
keys (see example above)['A', 'B', 'C']
{ a: 'A', b: 'B', c: 'C' }
If you assign options as an empty array, the input will be rendered in a disabled state.
The taglist
input allows users to search through a list of options and apply any number of tags. Users can also drag and drop tags to re-order:
The taglist input will filter options with its own internal search function. You can replace this search function by providing the filter
prop a function of your own. Your function will receive two arguments, the option
being iterated over and the current search
value:
The taglist input, unlike the dropdown or autocomplete inputs, allows you to enter an arbitrary value (a value not in the list of options). This is useful for creating new tags on the fly. To enable this feature, set the allow-new-values
prop to true
.
Instead of passing a static list to the options
prop, you can assign it to a function. Doing so is useful when you need to load options from an API or another source.
In this example, we'll assign the options
prop the searchMovies
function. By doing so, searchMovies
will receive the context
object as an argument. Within this context
object is the search
property, which is the current search value. To perform our search, we'll use the search
value as the query parameter for our API request:
A likely scenario you'll encounter is needing to search through a paginated API. This can be done by referencing the same context
object as before. Within this object, we can utilize the page
and hasNextPage
properties. The page
property is the current page number, and the hasNextPage
property is a function to be called when there are more pages to load:
Instead of requiring your users to click the Load more button to load additional options, you can set the loadOnScroll
prop to true, which will paginate options as you scroll to the bottom of the options list.
FormKit's taglist input also provides an optionLoader
prop that allows you to rehydrate values that are not in the options list. In this example, we'll provide the taglist an initial value (a movie ID), and assign the optionLoader to a function that will make a request to the API to get the movie:
Notice in the example above that the optionLoader function is passed two arguments: the value
of the selected option (in this case, the movie ID) and the cachedOption
. The cachedOption is used for preventing unnecessary lookups. If the cachedOption is not null
it means that the selected option has already been loaded, and you can return the cachedOption directly.
Instead of requiring your users to click the Load more button to load additional options, you can set the loadOnScroll
prop to true, which will paginate options as you scroll to the bottom of the options list.
If you would rather load options when the taglist is created, you can set the load-on-created
prop to true, and our function, loadCurrentlyPopularMovies
will be called without the user needing to expand the listbox:
Just like the taglist input or Autocomplete input, the taglist input allows you to utilize slots to customize the look and feel of the options list and the selected option by leveraging the renderless component pattern.
In this example, we are going to use the tag
slot to customize the look of the tags:
The taglist input, by default, will not expand the listbox when no search results are found while filtering. You can change this behavior by assigning the empty-message
prop a message to display when no results are found:
The max
prop allows you to limit the number of options that can be selected. When the max
limit is reached, the taglist input will disable the listbox:
If you would like the taglist's listbox to remain open in between selections, set the close-on-select
prop to false
:
If you want the options to be reloaded (with static options, this would filter the options with the value of empty string, and with dynamic options, this would make a request to the options loader with the value of empty string) when the user commits a selection, use the reload-on-commit
prop:
To enable opening the taglist's listbox on click of its search input, set the open-on-click
prop to true
:
If you would like to open the taglist's listbox anytime its search input is focused, set the open-on-focus
prop to true
:
Open on focus encompasses open on click.
If you want the listbox to expand when an selection is removed, use the open-on-remove
prop:
If you would like the listitems in the listbox to be grouped, pass the options
prop an array of objects and include the property group
:
Now let's combine what we've learned so far by leveraging the tag
slot for custom markup, and setting the options
prop to a function that will return pages of movies from an API:
Prop | Type | Default | Description |
---|---|---|---|
debounce | number | 200 | Number of milliseconds to debounce calls to an options function. |
options | any | [] | The list of options the user can select from. |
load-on-scroll | boolean | false | When set to `true`, the taglist will try loading more options based on the end-user`s scroll position |
open-on-click | boolean | false | The autocomplete is expanded upon focus of the input, as opposed to waiting to expand until a search value is entered. |
filter | function | null | Used to apply your own custom filter function for static options. |
option-loader | function | null | Used for hydrating initial value, or performing an additional request to load more information of a selected option. |
allow-new-values | boolean | false | Allows end-user to enter a new value that does not exist within the options list. |
disable-drag-and-drop | boolean | true | Disabled end-user from sorting tags by dragging and dropping. |
empty-message | string | undefined | Renders a message when there are no options to display. |
max | number | undefined | Limits the number of options that can be selected. |
close-on-select | boolean | true | Closes the listbox when an option is selected. |
open-on-remove | boolean | false | When the `selection-removable` prop is set to `true`, the taglist will not open after the selected value is removed. You can change this behavior by setting the `open-on-remove` prop to `true`. |
open-on-focus | boolean | false | |
options-appearance | string | undefined | For multi-select taglists, this prop allows you to customize the look and feel of the selected options. Possible values are `default` (the default) or `checkbox`. |
always-load-on-open | boolean | true | Determines whether the taglist should always load its options when opened or whether it should reference the options that were previously found when opening. |
load-on-created | boolean | false | When set to `true`, the taglist will load the options when the node is created. |
popover | boolean | false | Renders the input's listbox using the browser Popover API. |
Show Universal props | |||
config | Object | {} | Configuration options to provide to the input’s node and any descendent node of this input. |
delay | Number | 20 | Number of milliseconds to debounce an input’s value before the commit hook is dispatched. |
dirtyBehavior | string | touched | Determines how the "dirty" flag of this input is set. Can be set to touched or compare — touched (the default) is more performant, but will not detect when the form is once again matching its initial state. |
errors | Array | [] | Array of strings to show as error messages on this field. |
help | String | '' | Text for help text associated with the input. |
id | String | input_{n} | The unique id of the input. Providing an id also allows the input’s node to be globally accessed. |
ignore | Boolean | false | Prevents an input from being included in any parent (group, list, form etc). Useful when using inputs for UI instead of actual values. |
index | Number | undefined | Allows an input to be inserted at the given index if the parent is a list. If the input’s value is undefined, it inherits the value from that index position. If it has a value it inserts it into the lists’s values at the given index. |
label | String | '' | Text for the label element associated with the input. |
name | String | input_{n} | The name of the input as identified in the data object. This should be unique within a group of fields. |
parent | FormKitNode | contextual | By default the parent is a wrapping group, list or form — but this props allows explicit assignment of the parent node. |
prefix-icon | String | '' | Specifies an icon to put in the prefixIcon section. |
preserve | boolean | false | Preserves the value of the input on a parent group, list, or form when the input unmounts. |
preserve-errors | boolean | false | By default errors set on inputs using setErrors are automatically cleared on input, setting this prop to true maintains the error until it is explicitly cleared. |
sections-schema | Object | {} | An object of section keys and schema partial values, where each schema partial is applied to the respective section. |
suffix-icon | String | '' | Specifies an icon to put in the suffixIcon section. |
type | String | text | The type of input to render from the library. |
validation | String, Array | [] | The validation rules to be applied to the input. |
validation-visibility | String | blur | Determines when to show an input's failing validation rules. Valid values are blur , dirty , and live . |
validation-label | String | {label prop} | Determines what label to use in validation error messages, by default it uses the label prop if available, otherwise it uses the name prop. |
validation-rules | Object | {} | Additional custom validation rules to make available to the validation prop. |
value | Any | undefined | Seeds the initial value of an input and/or its children. Not reactive. Can seed entire groups (forms) and lists.. |
Section-key | Description |
---|---|
selector | The selector section is a button element that opens the taglist options list. |
selections | Contains individual selection sections. |
selection | Contains the selected option. |
listitem | A list item element that contains the option section. |
option | A div that contains the option content. |
listbox | The listbox section is a ul element that contains the options list. |
taglistWrapper | Wraps the listbox section. A div that handles scrolling the listbox. |
optionLoading | A span element that is conditionally rendered within the selected option when loading is occurring. |
loaderIcon | An element for outputting an icon in the selector element when loading is occurring. |
selectIcon | An element for outputting an icon in the selector element when the taglist is closed. |
loadMore | A list item element that is conditionally rendered at the bottom of the options list when there are more pages to load. |
loadMoreInner | A span element that acts as a wrapper for the loaderIcon within the loadMore section. |
removeSelection | A button element used for removing a specific selection. |
closeIcon | An element for outputting an icon within the removeSelection button. |
listboxButton | A button element that is used to open the taglist. |
emptyMessage | A list item element that is conditionally rendered when there are no options to display. |
emptyMessageInner | A span element that acts as a wrapper for the emptyMessage section. |
Show Universal section keys | |
outer | The outermost wrapping element. |
wrapper | A wrapper around the label and input. |
label | The label of the input. |
prefix | Has no output by default, but allows content directly before an input element. |
prefixIcon | An element for outputting an icon before the prefix section. |
inner | A wrapper around the actual input element. |
suffix | Has no output by default, but allows content directly after an input element. |
suffixIcon | An element for outputting an icon after the suffix section. |
input | The input element itself. |
help | The element containing help text. |
messages | A wrapper around all the messages. |
message | The element (or many elements) containing a message — most often validation and error messages. |
You can target a specific section of an input using that section's "key", allowing you to modify that section's classes, HTML (via :sections-schema
, or content (via slots)). Read more about sections here.
All FormKit inputs are designed with the following accessibility considerations in mind. Help us continually improve accessibility for all by filing accessibility issues here:
Section Key | Attribute | Default | Description |
---|---|---|---|
input | tabindex | 0 | Prioritizes keyboard focus order by setting it to 0. |
role | combobox | Indicates to assistive technologies that this element functions as a combobox. | |
readonly | Restrict user edits, ensuring data integrity and a controlled, informative user experience. | ||
aria-autocomplete | list | Guides input suggestions, presenting a collection of values that could complete the user's input. | |
aria-expanded | Conveys the expandable state when the element is in focus. | ||
aria-controls | Associates the listbox element, with this element. | ||
aria-describedby | Associates an element with a description, aiding screen readers. | ||
aria-activedescendant | Manage focus to the current active descendent element. | ||
listboxButton | tabindex | -1 | Prioritizes keyboard focus order by setting it to -1. |
aria-haspopup | true | Signals that an element triggers a pop-up or menu | |
aria-expanded | Conveys the expandable state when the element is in focus. | ||
aria-controls | Associates the listbox element, with this element. | ||
tagWrapper | tabindex | -1 | Prioritizes keyboard focus order by setting it to -1. |
tag | role | button | Indicates to assistive technologies that this element functions as a button. |
tags | aria-live | polite | Communicates dynamic content changes when selections are on the screen. |
removeSelection | tabindex | -1 | Removes the prioritization of keyboard focus on this element. |
aria-controls | Associates the input element, with this element. | ||
Show Universal section key | |||
label | label | for | Associates the label to an input element. Users can click on the label to focus the input or to toggle between states. |
input | input | disabled | Disables an HTML element, preventing user interaction and signaling a non-interactive state. |
aria-describedby | Associates an element with a description, aiding screen readers. | ||
aria-required | Adds this attribute when validation is required. | ||
icon | icon | for | Whenever icon is defined as a label it links it to an input element. |
Keyboard Event | Description |
---|---|
Tab | Moves the focus to the next focusable input on the page. |
Shift + Tab | Moves the focus to the previous focusable input on the page. |