-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
AutocompleteInput does not pass on InputProps to material-ui TextField #4517
Comments
We would be happy if you can do so. As you pointed, Try to think about some unit test to check this change. |
@JulienMattiussi I can definitely work on some, do you have any that immediately comes to mind? Thanks for the help! |
@JulienMattiussi did you have any input? Thanks for your help! |
This seems like a common problem with high level inputs (PasswordInput, SearchInput, ResettableTextField, AutocompleteArrayInput). We're doing something with the ResettableTextField tho:
Maybe you can take this one as an example? |
Any progress on this one? I would also like to set |
@Kmaschta what would the unit tests look like that @JulienMattiussi alluded to? |
Fixed by #5396 |
For those looking for information on how to pass refs: |
What you were expecting:
AutocompleteInput
does not respect alloptions
passed to it.The docs state the following:
The issue here is that in the code, the
InputProps
parameter, when set insideoptions
, is actually considered to be literal<input>
properties that are called using thedownshift
functiongetInputProps
.https://github.com/marmelab/react-admin/blob/master/packages/ra-ui-materialui/src/input/AutocompleteInput.tsx#L354
Then you can see in the code that is passed to the underlying material-ui
<TextField>
that it wholesale setsInputProps
to its own derived values: https://github.com/marmelab/react-admin/blob/master/packages/ra-ui-materialui/src/input/AutocompleteInput.tsx#L363This means there's a ton of things, such as
endAdornment
, which can't be properly set because it isn't properly passed on to the underlying input.My Question
Will you welcome a pull request to change the behavior to pass on all properties except the ones that
react-admin
explicitly cares about?Current code:
Proposed code:
The text was updated successfully, but these errors were encountered: