Hey...
I've got a widget which is set as hidden.
On an onChange-Event of a checkbox I want to set the visibility to true, if the checkbox is true.
But nothing happens. The widget is always hidden.
If I try it with a groupBox, it's the same. But if I make the groupBox visible in the standard, the onChange-Event works...
Here's my Code:
if (app.getFieldValue("adrIsMember")) {
app.setVisibility("wdgtRegistrationFee", true);
}else{
app.setVisibility("wdgtRegistrationFee", false);
}
A mistake by me or is there something wrong?