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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...