Detail View question

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

https://www.appsheet.com/templates/Example-of-how-to-make-a-gallery-view-of-clickable-icons?appGuidString=e7fb737c-2d1c-4769-9d5a-d0f7743317db

1 Like

Make a Slice that only contains the most recent record, with MAXROW. Then base the View on that Slice.

https://help.appsheet.com/en/articles/2357310-maxrow

2 Likes

Thank you, I will give a try!