How can I add a save and back to list button in the view for creating new record? In general, I want more buttons so I'm looking for a generic answer.
EDIT: Default generator provides me with two buttons:
- save
- save and add
I want a button that saves and takes me back to the list
. And I also want a custom button with a custom action.
Let me explain the actual situation:
I have a list action create
that takes me to a form having some input fields. Now I want to make an image using these fields' data. I want to display this image as preview on the right side of the form. For that I need a preview button so that whenever pressed, it submits the data to itself for preview and further modification.
I hope it's clearer now.