Replies: 2 comments 2 replies
-
Try
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Are you using a custom livewire component or a resource? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Form builder
Package Version
3.2
How can we help you?
I have a wizard with 3 steps and the last step does not trigger any method for validation.
Both step 1 and step 2 will trigger the beforeValidation and afterValidation methods.
The last step only has the save button assigned with the submitAction method which does not trigger the beforeValidation and afterValidation methods.
I have also tried using:
protected function beforeSave(): void
protected function mutateFormDataBeforeSave(array $data): array
public function save(bool $shouldRedirect = true, bool $shouldSendSavedNotification = true): void
None of these are triggered when I hit the save button.
Is there any way to perform a final validation before saving?
Beta Was this translation helpful? Give feedback.
All reactions