Hi.
I have 5 different versions of the same gallery with thd search pre populated and then hidden.
When I click on a record in the primary Gallery the record opens correctly. When I click on any item in the others it opens the original record from the 1st.
I understand I need to somehow link the other galleries but don't know how.
Thanks
You're welcome @Markswan20 - glad that's working for you.
Awesome, works a treat, I was seriously over complicating this so thank you
You'll need to change the OnSelect of the gallery like this:
Set(varRecord, ThisItem);
Navigate(DetailScreen1, ScreenTransition.None)
Can you confirm that you've changed the Item property of the Form in DetailScreen1 to be varRecord?
Thanks for the reply,
I have tried the Set(varRecord, ThisItem);
Hi @Markswan20
This is most likely because you're using a Form to display the record and the form is connected to your primary gallery.
If this is the case, add the following to the OnSelect property of your galleries:
Set(varRecord, ThisItem)
If you then set the Item property of your form control to varRecord, it should display the selected record from whatever gallery you selected.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.