[jboss-user] [JBoss Seam] - Re: Hibernate Validation issue
petemuir
do-not-reply at jboss.com
Wed Sep 13 05:24:56 EDT 2006
No, he means source tag files such as
| <h:composition>
| <my:input value="#{entity.property}" />
| </h:composition>
|
my.input.xhtml
| <h:input value="#{value}" >
| <s:validate />
| </h:input>
|
The consensus seems to be that this a limitation in EL that should be fixed. I work around it by specifying the entity.property as a string as well as a value binding for my source tags
| <h:composition>
| <my:input value="#{entity.property}" id="entity.property"/>
| </h:composition>
|
my.input.xhtml
| <h:input value="#{value}" >
| <s:validate for="#{id}" />
| </h:input>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971225#3971225
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971225
More information about the jboss-user
mailing list