Opening a modal from a button in a Form Section and from a Card in a Form Section Repeater
Hi! I'm struggling to find where in the docs it explains how to open a modal within a form section or something even more nested. Seems like it needs to be from an Action but those Actions don't work within a Form? I'm a bit confused. Thanks!
Solution:Jump to solution
You just need to use an Action, more specifically:
use Filament\Forms\Components\Actions\Action as FormAction;
then you can use FormAction...
3 Replies
Solution
You just need to use an Action, more specifically:
use Filament\Forms\Components\Actions\Action as FormAction;
then you can use FormAction
Checking it out, thanks~