© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•9mo ago•
18 replies
Asmit

Custom Action on custom column.

Hello everyone,
Is there any way to add custom action on custom column:
use Filament\Tables\Actions\Action;
use Filament\Tables\Columns\Column;

class CustomColumn extends Column
{
     public function getCustomAction(): ?Action
    {
       return Action::make('customAction')
           ->form([
               TextColumn::make('name')
           ]);
    }
}
use Filament\Tables\Actions\Action;
use Filament\Tables\Columns\Column;

class CustomColumn extends Column
{
     public function getCustomAction(): ?Action
    {
       return Action::make('customAction')
           ->form([
               TextColumn::make('name')
           ]);
    }
}


<div>
   {{ $getState() }}
   {{ $getCustomAction() }}
</div>
<div>
   {{ $getState() }}
   {{ $getCustomAction() }}
</div>

It shows the button but not trigger the modal why ?
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

Custom action for clickable url column
FilamentFFilament / ❓┊help
3y ago
Action button within Custom Table Column
FilamentFFilament / ❓┊help
3y ago
Table Action Url() on Column
FilamentFFilament / ❓┊help
3y ago