Closed mtsdalmolin closed 5 months ago
First of all I think you have to put NumericFormat inside a React-Hook-Form Controller, try this:
import { Controller, useForm, FormProvider } from "react-hook-form";
import { NumericFormat } from "react-number-format";
function App() {
const methods = useForm({
defaultValues: {
value: 1200,
},
});
const { control } = methods;
return (
<FormProvider {...methods}>
<Controller
name="value"
control={control}
render={({ field }) => (
<NumericFormat
{...field}
type="text"
/>
)}
/>
</FormProvider>
);
}
export default App;
Describe the issue and the actual behavior
I am trying to integrate
NumericFormat
withreact-hook-form
, but it seems not to be working properly. I need to render the input with defaultValues specified inuseForm
hook call, but appears thatNumericField
is not reflecting this behavior.Code snippet
Describe the expected behavior
I need to render the default values passed in
useForm
hook in the input so the form comes pre-filled for the user.Provide a CodeSandbox link illustrating the issue
https://stackblitz.com/edit/vitejs-vite-yf4qng?file=src%2FApp.tsx&terminal=dev
Provide steps to reproduce this issue
In the example provided in the link above, I am using the component
NumericFormat
aside with a regularinput
and it shows exactly what I'm trying to achieve.Please check the browsers where the issue is seen