List of validation rules for input

0
I've created a validation solution as described in http://mendixandbeyond.com/2015/03/23/v-for-validation-part-2-revolution-or-reformation/ Then you create a validation microflow that looks something like this: I was wondering if it is possible to call or execute a list of rules, instead of copy/pasting the Rule, call Append microflow and Merge steps?
asked
1 answers
0

If you want to execute a list of rules you need to configure the list first, in your validation microflow you can iterate through the list. Will work pretty much the same as above example.

Why not create a validation microflow which returns a boolean and has the object to validate as input? Create a boolean and set it to true at the beginning and start checking each validation rule. If validation fails set the boolean to false and use the validation feedback option. At the end return the boolean.

answered