FilamentF
Filament2y ago
CT

How to disable click to edit on particular column in a table row?

I have a table with an extra column that contains a custom blade component with an external link. It works fine, but when I click on it, the edit modal is also triggered. I have tried the following with no luck:
Tables\Columns\TextColumn::make('deferred')
                    ->url(null)
                    ->action(null)
                    ...etc

Is there something I am missing here? What do I have to do to disable the click on this table cell? If it matters, it is an edit modal that is triggered.
Was this page helpful?