I have a screen that has a behaviour to conditionally show fields based on checkbox selection. The issue I'm running into is when the checkbox is empty it is retaining a value.
I set Help text to show the value at any given time to help diagnose this, and when I unselect the last value, it is retaining the last value in the field. Is there any way around this?
Regards,
Steven
Community moderators have prevented the ability to post new answers.
For anyone else running into this:
This happened because I was using
def selectedOption = loeReq.getValue() as String
instead of
def selectedOption = loeReq.getValue().toString()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.