Show modal box after new product created
Hello, I have a product resource, and I want to show a modal box after a new product is created with the created product's data. How can I do it?
3 Replies
Is this a simple resource (create in modal), or do you have a dedicated Create page?
this is a simple resource
In your resource class, you can add
ViewAction
to your table actions.
Then on the ManageItems
class, you can customize the CreateAction
like this:
It will call the View action, right after the Create action.