I have two control; Toggle and Dropdown.
Intent is - If User is either Hierarchy 'Park' or 'Employee' Dropdown should default to 'Disabled' and Toggle should default to 'View'. Will the below achieve my goal?
Toggle DisplayMode and Visible have the following -
DisplayMode: If(varProgramHierarchy="National",Edit,View)
Visible: true
Dropdown DisplayMode and Visible have the following - (should the below be and If(Or...) condition?)
DisplayMode: If(SnapSiteStatusToggle.Value=false,Disabled) & If(varProgramHierarchy="Park",Disabled) &
If(varProgramHierarchy="Employee",Disabled)
Visible: true