Remove edit row on click function
In Filament 3.0 how do I remove the edit row in a table when I click it? I don't want that function.
I am trying to allow a click in this section without it going to edit after I click it- return $table
->columns([
Tables\Columns\Column::make('Create Flyer')
->view('admin.columns.downloadSingleEventPDF'),
6 Replies
Try
->recordAction(null)
on the TableI tried that- Tables\Columns\Column::make('Create Flyer')
->view('admin.columns.downloadSingleEventPDF')
->recordAction(null),
But I get this error- Method Filament\Tables\Columns\Column::recordAction does not exist.
It should go on the Table
I did do that as well and it still didn't work. The only thing that I have gotten to work is actually called return false; on my click event.
Solution
I'm not sure... there's also
->recordUrl(null)
you could trythat's what worked!! you are awesome!!! Thanks!