I'm using ModelAdmin with the default form scaffolding, to manage a complicated database of related objects.
Something along the line of Company has_many Employees, each Employee has_many Notes.
When creating Notes, after clicking the Create button a nice little "Saved" message appears and the user remains on the edit form for the just created Note.
Is there a way it can be setup so the user is either taken to a blank "Create" form or the GridField listing of all Notes for that Employee after Creating a Note? This could save a lot of clicks for a user creating many Notes in a row for one Employee?
Thanks.