We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1573f99 + 40c27f7 commit 354bd3eCopy full SHA for 354bd3e
src/main/java/com/jquerybuilder/validation/ValidationGroup.java
@@ -57,6 +57,8 @@ public boolean execute(Map data) {
57
}
58
for (ValidationGroup validationGroup : validationGroups) {
59
boolean ruleResult = validationGroup.execute(data);
60
+ if (result == null) {
61
+ result = ruleResult;
62
if (Condition.AND.equals(condition)) {
63
result &= ruleResult;
64
} else {
0 commit comments