Is there any way to get the full data (not only id) of each AutocompleteInput in the ArrayInput? I want to sum the total price of the items in ArrayInput. Here is the sample of item record { id: 1, name: 'item 1', price: 100}.
<ArrayInput source="items">
<SimpleFormIterator>
<ReferenceInput
label="Item"
source="id"
reference="items"
>
<AutocompleteInput
matchSuggestion={matchSuggestion}
optionText={<ItemOptionField />}
inputText={itemInputText}
/>
</ReferenceInput>
</SimpleFormIterator>
</ArrayInput>