seasonedcc / remix-forms

The full-stack form library for Remix and React Router
https://remix-forms.seasoned.cc
MIT License
491 stars 25 forks source link

Get form fields before form submission #164

Closed netdesignr closed 1 year ago

netdesignr commented 1 year ago

Hi,

Is there any built in functionality that allows getting the Form field values as the user interacts with the form?

Thanks a lot!

danielweinmann commented 1 year ago

Hey, @netdesignr! Sure, you can access all of React Hook Form's useForm return, either from the form children or useFormState inside your components.

To do it before submission, you can override the form's onSubmit or button's onClick events and do an imperative submit.

I'm closing the issue but feel free to reopen it at any time o/

netdesignr commented 1 year ago

@danielweinmann thank you. Guga has also replied about the watch on Discord. I've mistakenly used watch by importing it from react-hook-form instead from within remix-forms.