Hello PowerUsers!
Good day!
I would just like to know what are the issue of my app. So I have this app that when the user clicks the dropdown, there will be a certain pop-up that will appear. This pop-up has been set to global variable named {VarShowpopup 2,3,4.... etc..}
Now, I got it to work, but whenever the user clicks the dropdown, it is requiring a double-click to show the pop-up. Also to add, i am not using any connector on this app.
Here is code on the Dropdown1_1 (1st dropdown):
If(
Dropdown1.Selected.Value = "Benefits",
"Payroll",
"Benefits",
"Offboarding",
"Onboarding",
"Rewards",
"Records",
"Health & Wellness",
"Rewards",
"Engagement & Comms",
"HR Business Partners",
"Org. Development",
Set(
varShowPopup,
false
);)
OnChange:
If(Dropdown1.Selected.Value="Payroll","Benefits","Offboarding","Onboarding","Rewards","Records","Employee Relations","Health & Wellness",Set(varShowPopup2_1, false );Set(varShowPopup2_2, false );Set(varShowPopup1, false );Set(varShowPopup1_1, false );Set(varShowPopup1_2, false );Set(varShowPopup1_3, false );Set(varShowPopup1_4, false );Set(varShowPopup1_5, false );Set(varShowPopup1_6, false );Set(varShowPopup2, false );Set(varShowPopup3, false );Set(varShowPopup4, false );Set(varShowPopup5, false );)
Pop-up visible property code:
If(Dropdown1.Selected.Value = "Academy",If(Dropdown1_3.Selected.Value = "Corporate and Business-Enabling Team (CBET)", varShowPopup2_1, false))
Thank you!