SelectArrayInput with dynamic array data

336 Views Asked by At

The SelectArrayInput component in the tutorial used a const array as choices prop, I want to use a dynamic array data which query from server to set to choices prop, can you suggest a solution to me?

Thanks

1

There are 1 best solutions below

0
On

It would be better if your choices were actually a resource so you can use the ReferenceArrayInput. Even if you don't want to allow the user to edit them (with List, Show, etc), you can simply declare a resource like this:

<Resource name="choices_resource_name" />

This way, you can use it in Reference inputs and fields.

If you can't make it a resource, you'll have to implement a custom input component doing the fetch in a componentDidMount, etc.