on 2024 Nov 18 2:47 PM
Dear Devs,
I need a little advice on how to solve this seemingly simple yet tricky topic.
As shown in the image, I need to conditionally control these 3 checkboxes based on a condition.
These checkboxes are grouped inside a subform, which I've bound to my structure VIQMEL.
Objective:
Do you know how this can be managed?
Thank you so much!
Gianni
Request clarification before answering.
Hi Gianni,
Create a hidden field named QMART that is bound to VIQMEL-QMART inside subform BOX_GREY. Set the checkboxes so they are unbound and calculated, and use the following Javascript for each field, and of course the string value would change for each checkbox.
this.rawValue = this.parent.QMART.rawValue == "Z1" ? 1 : 0;
Regards,
Ryan Crosby
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.