adding HTML template to JSF application
hi
I am facing a problem ,, I need to add a ready made HTML template to my JSF project with primefaces components
but I found this errors when I am trying to run this page
***Error(27,45): The deferred EL expression is not allowed since deferredSyntaxAllowedAsLiteral is false.***
on every passing value or parameter to the backbean like this
value="#{userGroup_backing.selectedUserId}"
what I am doing is just including a header.jsp and footer.jsp as container to HTML code
<subview id="header" >
<jsp:include page="/header.jsp" flush="true"/>
</subview>
I need a way to run the page correctly with the HTML template ...
please advice sooooooon....
Soha