MUI Autocomplete with "multiple" prop not initially populated
I am using a MUI Autocomplete with "multiple" prop in an Edit page.
The entity of the edit page has the values (multiple) in the "fishes" property, which is a list of IDs.
When i enter the page for an entity that already has the "fishes" property populated, the Autocomplete does not pre-compile the input with the pre-existing values.
2 Replies
Hi @Vargash. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Based on the information provided in the knowledge sources and your question, it appears that you're encountering an issue with the MUI Autocomplete component not pre-populating with existing values in an Edit page. This is a known issue that has been reported and addressed in Refine. Let me provide some insights and potential solutions:
1. Default Value Handling:
The
useAutocomplete
hook in Refine has a defaultValue
property that should handle pre-populating the Autocomplete component. You're correctly passing this in your code:
However, there might be a timing issue where the record
is not yet available when this hook is called.
2. Ensuring Default Values are Included:
Refine's useAutocomplete
hook sends a separate query to ensure that the default values are included in the options, even if they're not in the current visible options. This is done using the useMany
hook internally.
useAutocomplete API Reference mentions:
"When the defaultValue
property is given, the useMany
data hook is called for the selected records. With this property, you can change the options of this query."
3. Multiple Values Handling:
The multiple
prop on the Autocomplete component changes how the component handles values. Make sure that the defaultValue
you're passing is indeed an array of IDs.
4. Potential Solution:
You might need to ensure that the record
data is available before rendering the Autocomplete component. You can do this by adding a conditional render:
5. Known Issue:
There was a reported issue similar to yours where the Autocomplete component wasn't clearing previous search values when used with the multiple
prop. This issue has been addressed, so make sure you're using the latest version of Refine.
Github Issue: Multiple MUI Autocomplete not clearing previous search value
6. Additional Debugging:
To further debug, you could log the fishesAutocompleteProps
and record?.fishes
to ensure they contain the expected values when the component renders.
If the issue persists after trying these suggestions, it might be worth creating a minimal reproducible example and reaching out to the Refine community or opening an issue on their GitHub repository for more specific assistance.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@171884471849713664> Kapa.ai is still learning and improving, please let me know how I did by reacting below.