Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0-alpha-2
-
None
Description
scenario:
<f:validateBean validationGroups="group1">
<h:inputText>
<f:validateBean />
</h:inputText>
<h:inputText>
<f:validateBean validationGroups="group2" />
</h:inputText>
</f:validateBean>
In this scenario the first h:inputText gets a bean validator with validationGroup group1 and the second h:inputText should get a bean validator with the validationGroup group2. Currently the second h:inputText gets a bean validator with both validationGroups (group1,group2).