Opening a confirmation modal after validation.
Is there a way to open the confirmation modal after validation? I just want to add a modal as a final confirmation for the user data.
5 Replies
@Hemith did you figure this out? Running into same problem
I couldn't figure it out bro. I could only open the modal before validation
@Hemith did you find a solution for this?
Any updates on this?
on Action, try
->mountUsing(fn() => $this->form->validate())
details: https://github.com/filamentphp/filament/discussions/4427GitHub
Confirmation on update · filamentphp filament · Discussion #4427
Can I somehow make updating form with confirmation popup? I tried to override default save action, like this: protected function getSaveFormAction(): Action { return Action::make('save') -&...