Hi,
Is it possible to make both text fields grey when the app starts and nothing is selected in the radio buttons?
Solved! Go to Solution.
I solved it using;
If(IsBlank(Radio1.Selected.Value),DisplayMode.Disabled, If(Radio1.Selected.Value="Office", DisplayMode.Disabled,DisplayMode.Edit))
Hi @JHS2020
You could use the DisplayMode property of the card. Unlock the card and set the DisplayMode to something like
If(somecondition,View,Edit)
You could use the Set(var,true) function to create a variable in the OnStart property of the app and use that with IsBlank(Radio.Selected.Value)
If(var && IsBlank(Radio1.Selected.Value),View,Edit)
Does not really help?
I solved it using;
If(IsBlank(Radio1.Selected.Value),DisplayMode.Disabled, If(Radio1.Selected.Value="Office", DisplayMode.Disabled,DisplayMode.Edit))
User | Count |
---|---|
198 | |
105 | |
88 | |
45 | |
43 |
User | Count |
---|---|
245 | |
105 | |
103 | |
65 | |
60 |