-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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
Multiselect for SelectField and AutoComplete #2337
Comments
I think that it would be a good feature. As far as I have think about it, it should many require to change the |
Should we just consider expanding the current To support chips, we could possibly expose a prop that accepts a function that customizes the rendering of the values, such as the For example, the code below would show each value as a chip with an avatar as the first letter of the display name kind of like this -> <AutoComplete valueRenderer={(value) => {
return <Chip avatar={<Avatar>{value.displayName[0]}}</Avatar>}>
{value.displayName}
</Chip>
}} { ...otherProps} /> If a custom |
I like the idea of a |
+1 i would love to see a component like the one from MaterializeCSS: |
+1 |
Closing this as its a duplicate of #1956 |
Hello,
I am utilizing select fields and auto complete a lot in my app and I'd like to know if there are plans for adding multi-select for these fields. I think multi-select is widely required feature that a lot of developers can benefit from.
Thanks!
The text was updated successfully, but these errors were encountered: