disable recordUrl
how global config in provider prevent table click row
i try this
Table::configureUsing(function (Table $table): void {
$table
->paginationPageOptions([5,10,15,25])
->recordUrl(false)
->striped();
});
but not work and it work in table resource9 Replies
did you try ?
$table->recordAction(null)
i try it not work
Seems like its not working globally, but it is working on the resource table itself 🤔
This could be a bug, but im not 100% sure.
Just to add to the thread, im trying to use recordAction too but im passing 'edit' and dosen't change the behavior for some odd reason
for this i think you should use recordUrl
Yeah i tried, but it was easier to just ViewAction->visible(auth->user()->can())
It is jank, but it works
that's how it's done
i want in globally config
Like i said, it could be a bug.