Source: SecurityReview
Collection: SRView
Varible: varGRP
In screen1 (Home), I have made a collection that allows my Gallery item to Fill(green) onselect:
Fill=If(ThisItem in SRView, RGBA(0,255,0,1),RGBA(0,0,0,0))
OnSelect=Set(varGRP,ThisItem); Collect(SRView,ThisItem); Navigate(GroupReview)
The app then navigates to a new screen(GroupReview) that has a gallery that shows items nested under the item selected from Home screen. If I navigate back home, that item is now filled green.
However, i need to have the option to update the "GroupReview" Gallery. I have set an Icon to edit a form on a different screen (UpdateResults).
When I update the form on "UpdateResults" screen and navigate to the "Home" Screen my fill resets itself.
Is there a way to maintain my fill settings after updating a form?