Hi,
I have a problem with the form visibility logic. It seems field maps does not work in combination with the visibility logic. I have tested this and below you can see the difference in forms on the same feature.
Because the form is correct in the online viewer, I think the field maps app does not deal with the visibility correctly? The same expression is used for required and that does seem to show up in the field map app.
Even if I set the visibility false without any expression or logic, the app still shows that field in the editor.
Am I missing something? I know the expression works:
var txt = $feature["PER_TARE"];
var maaironde = $feature["maaironde"];
if (Find(maaironde, txt, 0) > -1){
return true
}

