I have a detail view set to position right in my navigation bar.
I would like this to show me the newest detail that I have created, when clicked.
How can I do this?
I have a detail view set to position right in my navigation bar.
I would like this to show me the newest detail that I have created, when clicked.
How can I do this?
Hello @NCD , I don’t think you can pull that off directly from a click from the navigation bar, since those get you straight into the views without allowing any configuration about it.
You could create a menu view instead, that would use deep links to do exactly what you wish, but it is a different kind of solution.
References:
https://help.appsheet.com/en/articles/1023058-app-column-type-deep-link
Make a Slice that only contains the most recent record, with MAXROW. Then base the View on that Slice.
Thank you, I will give a try!