Defined in: packages/form-core/src/FormGroupApi.ts:655
isSubmitSuccessful: boolean;isSubmitSuccessful: boolean;Defined in: packages/form-core/src/FormGroupApi.ts:688
A boolean indicating if the last submission was successful.
isSubmitted: boolean;isSubmitted: boolean;Defined in: packages/form-core/src/FormGroupApi.ts:676
A boolean indicating if the onSubmit function has completed successfully.
Goes back to false at each new submission attempt.
Note: you can use isSubmitting to check if the form is currently submitting.
isSubmitting: boolean;isSubmitting: boolean;Defined in: packages/form-core/src/FormGroupApi.ts:668
A boolean indicating if the form is currently in the process of being submitted after handleSubmit is called.
Goes back to false when submission completes for one of the following reasons:
Note: if you're running async operations in your onSubmit function make sure to await them to ensure isSubmitting is set to false only when the async operation completes.
This is useful for displaying loading indicators or disabling form inputs during submission.
isValidating: boolean;isValidating: boolean;Defined in: packages/form-core/src/FormGroupApi.ts:680
A boolean indicating if the form or any of its fields are currently validating.
submissionAttempts: number;submissionAttempts: number;Defined in: packages/form-core/src/FormGroupApi.ts:684
A counter for tracking the number of submission attempts.