Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Pranav gandhe
44
Views
1
Comments
How to check/uncheck checkboxes -like radio button
Question
Hi Everyone,
I have two checkboxes in my page, i want to uncheck checkbox by checking on different checkbox(like radio button functionality).
please help me on that. and please provide screenshot for that.
Thanks in advance.
João Rosado
Staff
Hi Pranav
Here is a sample eSpace with that.
Here is also a screenshot:
On my sample it also allows to unselect checked combo boxes.
If you want to forbid that, then change the javascripts to something like:
"if(!this.checked) { this.checked = true; }
document.getElementById(""" + Combo2.Id + """).checked = false;"
and
"if(!this.checked) { this.checked = true; }
document.getElementById(""" + Combo1.Id + """).checked = false;"
Regards
João Rosado
DualCombos.oml
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...