Page 1 of 1

When saving in Detail View go back to Table View

Posted: 2022-08-12 20:42
by selectsteel
I have my Detail View open in a new page and I want when someone saves a new record to go back to the Table view rather than stay in detail view. Is this possible?

Re: When saving in Detail View go back to Table View

Posted: 2022-08-13 19:46
by patsd102
In your yourtablename_view.php find this line " $x->RedirectAfterInsert = 'yourtablename_view.php?SelectedID=#ID#; "and change to $x->RedirectAfterInsert = 'yourtablename_view.php';

Please note, this is a main file change, so you will need to change the line each time you update your app.

Re: When saving in Detail View go back to Table View

Posted: 2022-08-13 19:58
by patsd102
You can also do this in the app, under Detail view settings.

Re: When saving in Detail View go back to Table View

Posted: 2022-08-15 13:35
by selectsteel
Thanks for the help very much appreciated.