Hi all
In JSF 2.0 project (jsf-api/impl 2.1.7) I get a validation erron if I use h:graphicImage with
name
and
library
attributes
So if I write:
<h:graphicImage id="logoAppl" name="Appl.png" library="mylibrary" />
it tell me: “unknown attribute name” “unknown attribute library”
Note: the rendering on web site work fine.
So I had to rewrite it this more clumsy way to avoid validation errors on JSF views
<h:graphicImage value="#{resource['mylibrary:Appl.png']}" />
Is there a way to correct it.
Thanks in advance for any help