Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
I have two check boxes B1and B2. I’d like the boxes to be mutually exclusive so that if one box is checked the other is unchecked and both cannot be checked at the same time. Could anyone help?
Thanks in advance
Solved! Go to Solution.
Hello,
You can make two check boxes to be mutually exclusive by writing the following code
in the click event i.e.
for check box B1:-
if(this.rawValue == 1) { B2.rawValue = 0; }
for check box B2:-
if(this.rawValue == 1) { B1.rawValue = 0; }
Thanks,
Debadas.
View solution in original post
Views
Likes
Replies