-
Type:
Feature Request
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution:
Out of Date
-
Affects Version/s: 1.0 beta 2
-
Fix Version/s: The future
-
Component/s: JSF Integration
-
Labels:None
-
Forum Reference:
-
Affects:Documentation (Ref Guide, User Guide, etc.)
I have submitted a patch to hibernate-annotations: ANN-208 (http://opensource2.atlassian.com/projects/hibernate/browse/ANN-208)
This patch creates validation issues for child objects. The format is:
mbean.collection[collection-index].childProperty
Example:
user.addresses[1].street
This patch allows the ValidationInterceptor to attempt to find the "street" UIComponent. It does this by using the "dataTable" naming:
addresses:1:street
Which would be produced by:
<t:dataTable var="address" value="#
">
<t:column>
<t:inputText value="#
" />
...