Carlo
How do you disable $table->recordUrl(null) globally in all tables?
Same here, other setup I made is working, only this
recordUrl
is not working as expected. I also tried removing other configuration I made for the table to see if it's a conflict, but still no luck.18 replies
How do you disable $table->recordUrl(null) globally in all tables?
It's working for individual tables where I added
->recordUrl(null)
, but I'm trying to make it as default for all tables to not repeating it in every table. For now I added it in all tables haha 😅18 replies
headerActions: "mutateFormDataUsing" method not working in RelationManager table
I see, I do have a CreateAction inside emptyStateActions and headerActions so it's kinda duplicated. I tried removing the other action inside emptyStatections so now it's working, the mutateFormDataUsing() is now being triggered. Thanks for the answer 🙂
12 replies
headerActions: "mutateFormDataUsing" method not working in RelationManager table
Not sure why, but if I'm only using
CreateAction::make()
the ->mutateFormDataUsing()
is not being called but if I pass a string name to CreateAction::make('New Resource')
it works.12 replies