You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The multi-select option is currently searchable. I have a suspicion that the transform option should be included here, since users want to search by label and not by value. However the selectfield documentation in lacking.
Would be useful since select list are often long (countries).
The text was updated successfully, but these errors were encountered:
I'm strongly against setting it as a default, but there should be filterDOMProps In the SelectField, so you can use it already, like it's used in other fields and themes. Would you like to submit a PR for it?
Not sure if it makes sense to includes this as an optional, but I think it might as well be always enabled.
Its real simple. Have a look at:
https://ant.design/components/select/#components-select-demo-search
it suggests to add:
filterOption={(input, option) => option.props.value.toLowerCase().indexOf(input.toLowerCase()) >= 0}
to Select props.
The multi-select option is currently searchable. I have a suspicion that the
transform
option should be included here, since users want to search by label and not by value. However the selectfield documentation in lacking.Would be useful since select list are often long (countries).
The text was updated successfully, but these errors were encountered: