Hi Team,
I creating multiple checkbox on the screen and i want to users can select one check at a time and remaining should be uncheck.
FYI...My data is not following through Gallery/Sharepoint.
Firstly, I would suggest using a Radio control instead of checkboxes as that will provide the functionality you want.
Otherwise, you will need to check the conditions of all the remaining checkboxes in your Default and/or DisplayMode properties in order to achieve what you want.
I hope this is helpful for you.
Thanks for your view however Radio Button is not solving my purpose.
Then you will need to implement the following logic in all your checkbox controls.
Example: CheckBox1, CheckBox2 and CheckBox3
First, the Default properties should all be false.
Next, in the OnCheck property of each control, you will add the following formula:
Checkbox1:
Reset(CheckBox2); Reset(CheckBox3)
Checkbox2:
Reset(CheckBox1); Reset(CheckBox3)
Checkbox3:
Reset(CheckBox1); Reset(CheckBox2)
can you share your solution, like screen shots. I did understand your issue.
if you have 3 checkbox in the screen and you check the first one, the other 2 remain unchecked unless the user check it. So do you want the remain do be just unchecked with a possibility of being checked or do you want the remains to be desabled?
Thanks @RandyHayes i was using checkbox7.value and bec of this i was not able to achieve.
Thanks a ton.
User | Count |
---|---|
121 | |
88 | |
88 | |
75 | |
66 |
User | Count |
---|---|
215 | |
180 | |
138 | |
96 | |
82 |