Remove/Disable record action on table
Is there a way to disable/remove the default click action on a table row?
Clicking on a table takes you to the form. Is there a way to disable this?
I've tried things like
->recordAction(false)
or ->recordAction(null)
but it doesn't work.Solution:Jump to solution
@ChesterS Yes, it is possible: https://filamentphp.com/docs/3.x/tables/advanced#record-urls-clickable-rows
2 Replies
Solution
@ChesterS Yes, it is possible: https://filamentphp.com/docs/3.x/tables/advanced#record-urls-clickable-rows
Ah totally missed that. Thank you 🙇♂️