Is it possible to show/hide a field depending on its value?
e.g. field isNormalLoss is boolean with true/false value, I would like to show this checkbox in UI if its value is true and hide if false.
Hi,
I would expect that your field is in read only mode. If it is editable so it make no sense to hide the field by value itself.
If you want to control displaying a field in form then you may use Expression: GetA12 Login
E.g.
kontext (RootGroup) {
case [isNormalLoss] = "true" { "Your Text" }
case [isNormalLoss] != "true" { "" }
}