Is it possible to trigger one Logic Rule from another Logic Rule?
I have a Logic Rule that runs on field update, but since I prefill the form it often times does not fire since the field is already filled and my user doesn’t need to change it.
I’d like to trigger the rule when a button is pushed and/or when the page loads in addition to when the field is updated. Can I accomplish this without recreating my logic rule three times with three different triggers?
Recreating the logic with different triggers would be the best way to go for this one (as it’s preferable to have a clear sequence of the logic than the potential risk of infinite loops with the “logic rule within a logic rule” concept)
In case anyone else finds this thread, I ended up creating a single Radio button field and added it to my trigger. Whenever it is clicked it then runs the validation script as needed.
Additionally I added a little JS to uncheck the radio button after a couple of seconds so that it can be pressed again to re-validate.