Create and Edit from RelationManager without modal
This is probably a question that might be answered somewhere, but I can't find it. I want to create and edit records from a relationmanager, without opening a modal. Just the normal
create
and edit
pages. For both actions I need the parent record to be sent with it.
Is this possible?3 Replies
Yes, it's possible. You would need to create a custom table action and then define a URL route - and it would take the user to the correct page
And then you would need to add a
public
variable on the Create
page of the other resource with the same name as you define in the URL. And then it should automatically be applied to that variable@bwurtz999 is right, but the url generation is wrong, use:
Thanks 🙏. I’ll give it a try