Hi,
I would like to implement JSON Logic trigger in one of my forms. However I don’t seem to get the syntax quite right, I want to trigger an action when the hidden property from a specific field changes from true to false. According to Form.io my syntax is good but might need another set of eyes to look at my script. Any help is appreciated
my JSON logic looks like this
{
"if": [
{ "===": [{ "var": "cols_WEHW.hidden" }, true] },
{ "action": "action_1" },
{ "action": "action_2" }
]
}