I don't really know how to explain but I explain through my process. Appreciate the help.
I have 4 screen,
NAdminBrowse,
NAdminDetail,
AdminBrowse,
AdminDetail.
The following table is located in my BrowseGallery which can be found in NAdminBrowse and AdminBrowse screen.
| Ash |
| Benedict |
| Christopher |
| Dorothy Perkins |
| Elizabeth |
NAdminBrowse - OnSelect,
Navigate(NAdminDetailScreen, ScreenTransition.None)
Upon selecting any row in NAdminBrowse screen, will transition to a page labelled NAdminDetail screen.
AdminBrowse - OnSelect,
Navigate(AdminDetailScreen, ScreenTransition.None)
Upon selecting any row in AdminBrowse screen, will transition to a page labelled AdminDetail screen.
In the NAdminBrowse screen, when selecting any row, for example, the row with the name Ash. It will navigate me to the NAdminDetail screen for that specific person where the detail screen has birth dates, country of birth, etc. Likewise for other names, should you select Elizabeth in the NAdminBrowse screen, it will navigate to the NAdminDetail screen for Elizabeth.
However, I am not having the same expectation for AdminBrowse and AdminDetail screen. What it does is, it uses the last visit data from NAdminDetail screen, for example.
Under NAdminBrowse screen, I select Benedict and it'll navigate me to NAdminDetail screen and shows the details of Benedict. After which, when I select Christopher or Elizabeth or Ash under AdminBrowse screen, it'll navigate to the AdminDetail screen but for Benedict.
I checked that my BrowseGallery - OnSelect for AdminBrowse screen is,
Navigate(AdminDetail, ScreenTransition.None)
What could have went wrong, appreciate the assistance.