Lieven Vernaillen
Lieven Vernaillen
I understand that it is RHF that changed the logic to set disabled fields to undefined, changing the original value and making the form dirty. Is there a possibility that:...
I'm afraid that doesn't work. It disables the input, but it also removes the `AutoCompleteInput` behavior. It becomes a regular text field. No dropdown anymore and no autocomplete. An `AutoCompleteInput`...
Same for `AutoCompleteArrayIput`. That component now has a `TextFieldProps`, but it does not show the values that were selected anymore and renders no removes the autocomplete behavior in case disabled...
An option is to do something similar as you do with `useScrollToTop` hook. You could change the `CloneButton` implementation to not only pass the location state `_scrollToTop` but also pass...
For example in case you want to provide the user with an easy way to "clone" a record with everything already prefilled. There might be some changes needed, but those...
I also tried cloning via a CreateButton like below. It has the same problem. ``` export const CloneViaCreateButton = () => { const resource = useResourceContext(); const record = useRecordContext();...