Table header actions not showing in view page

How do you show the headerActions of a relation manager inside a view page resource? It only shows if I'm on the edit page, but I also want it to be enabled in view page. Is this possible?
Solution:
Hi. Relation Managers on the view page are readOnly by default. You can override that with this in your relation manager: ```php public function isReadOnly(): bool { return false;...
Jump to solution
3 Replies
Solution
Kenneth Sese
Kenneth Sese2y ago
Hi. Relation Managers on the view page are readOnly by default. You can override that with this in your relation manager:
public function isReadOnly(): bool
{
return false;
}
public function isReadOnly(): bool
{
return false;
}
Carlo
CarloOP2y ago
Thank you so much 🙂

Did you find this page helpful?