Hello,
I have 4 checkboxes and 1 button, it's a screen with test, so i don't want user to change his marks in any checkbox more than once.
So how can I disable checkboxes after pressing a button?
I tried to write in a checkbox1 displaymode this:
If(Button3_19.Pressed,DisplayMode.Disabled, DisplayMode.Edit)
But it disables checkbox only while I keep the button pressed. 😥
Solved! Go to Solution.
OnCheck of the Checkbox, create a variable;
UpdateContext (DisabledCheck,true)
Or use a set variable;
Set(DisabledCheck,true)
Then in the Displaymode;
If(DisabledCheck,DisplayMode.Disabled, DisplayMode.Edit)
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
OnCheck of the Checkbox, create a variable;
UpdateContext (DisabledCheck,true)
Or use a set variable;
Set(DisabledCheck,true)
Then in the Displaymode;
If(DisabledCheck,DisplayMode.Disabled, DisplayMode.Edit)
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
User | Count |
---|---|
161 | |
86 | |
71 | |
64 | |
62 |
User | Count |
---|---|
208 | |
149 | |
95 | |
84 | |
66 |