I need help:
Section1:
I have some buttons with UpdateContext variable used to filter my gallery. Exemple:
"Button A" formula UpdateContext({varStatusSelected: "1-ALL"}) ; "Button B" formula UpdateContext({varStatusSelected: "2-Start"}) and another "Button C" UpdateContext({varStatusSelected: "3-Finish"}) and others two buttons with more two variable. Here, everything ok in formunla.
-------------------------------------------------------------------------------------------------------------------------------------------
Section 2:
I have a gallery where items property is set with the follow formula below related to the buttons above to be filtered:
If(
varStatusSelected = "ALL",
LISTNAME,
Filter(
LISTNAME,
Column_Status_Fluxo = varStatusSelected
)
)
Here is everything ok in fomula too. When I click on the specific filter "Button" the galerry is correctly filtered.
============================================================================
My problem is:
When I start my App and click on a specific button to navigate to page where the buttons filter and gallery described above is placed, the GALLERY and the FORM beside gallery (that receives gallery selected informations) appears in blank. I need the gallery and form appears with information after I click on button to navigate to the page where they are located. The information just appears after I click on filter button.
Is anyone help me with this issue, please? Follow some pictures with real scenario attached to this post.