© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•14mo ago•
7 replies
Zyd

Adding actions modal on getHeaderActions

I have some issue when doing this, when i adding Action modals on ViewPage at getHeaderActions()
protected function getHeaderActions(): array
{
  return [
      Action::make('example_action')
                ->label('Example Action')
                ->form([
                    TextInput::make('example_input')
                        ->label('Example Input')
                        ->required(),
                ]),
          ];
}
protected function getHeaderActions(): array
{
  return [
      Action::make('example_action')
                ->label('Example Action')
                ->form([
                    TextInput::make('example_input')
                        ->label('Example Input')
                        ->required(),
                ]),
          ];
}


the modal did not showing, and when i click the action button, some components being buggy(gone), did i missed something?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Modal Table Select - Adding Actions
FilamentFFilament / ❓┊help
6mo ago
Modal Actions on Infolist
FilamentFFilament / ❓┊help
3y ago
Modal Actions
FilamentFFilament / ❓┊help
3y ago
Modal in getHeaderActions keeps submitting parent form
FilamentFFilament / ❓┊help
9mo ago