Can I make a validation rule from local variables, like use operator?

Certified Associate Developer

a!localVariables(
  local!fieldName:"5",
  local!operator:">",
  local!value:"2",
  a!textField(
                value: fv!item.fieldName,
                saveInto: fv!item.fieldName,
                validations: {
                  a!validationMessage(
                    message:"test",
                    showWhen: local!fieldName & local!operator & local!value
                  )
                }
              )
  )

This is an example of what I want to achieve, the operators can be different, the fieldValues & fieldName can be of the other fields. I want the showWhen condition to work even if I give it a string.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to lavanya03

    yes, I want the showWhen condition to be dynamic so that the conditional operators I use in it should be coming from a local variables & also for the left & right condition. e.g. I want to write "5>2" in showWhen but I have 3 local variables instead which will be:
     local!fieldName:"5",
    local!operator:">",
    local!value:"2",

    So is there a way to do this because these variables values can change

Children