-
-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AllowCustomValues for select (in addition to multiselect)? #191
Comments
You can try to use custom Select widget like this: https://codesandbox.io/s/geose |
For MaterialUI you can use this field config to solve your issue: label: "your select name",
type: "select",
valueSources: ["value"],
fieldSettings: {
listValues: ['a', 'b'], // your list of values
allowCustomValues: true
},
mainWidgetProps: {
showSearch: true // required for now, will set to true by default in next versions
}
}, For AntDesign it's in my todo list |
Hi @ukrbublik, Even I'm facing the same issue(allowCustomValues) with material UI. It's working with AntdConfig but not with Material UI. Here is the CBS https://codesandbox.io/s/modest-shaw-jwfrg4?file=/src/demo/config_simple.tsx. |
Closed as resolved in 6.3.0 |
Title pretty much says it all. It would be awesome to be able to select a custom value for a single select widget.
The text was updated successfully, but these errors were encountered: