Under options select (linked table), is it possible to have a search field for the select picker?
Under options select (linked table), is it possible to have a search field for the select picker?

in Editor
Editor is working perfect with option as select to pick some possibilities.
Although, when the list becomes too large, we prefer to have a search function here.
Is this possible?
Replies
Not with the built in
select
field type, since that just uses a simpleselect
.However, there are a couple of options:
datatable
field type with server-side processing to search records.field().update()
to update the list of options as they come in.Allan