I have two
JSF jsp pages. One of them is a template.(template.jspx) One of them is header.(header.jsp) The template, basically just has a <jsp:includes page="header.jsp> tag. The header has jsf and html tags that work in conjunction with the javascript to render the menu properly. If I run header.jsp page standalone(minus the <f:subview id="header> tag of course) the menu will render perfectly. If, I run template.jspx(which as i explained earlier calls header.jsp with the<jsp:includes page="header.jsp> tag), the menu is displayed as text links. Any help would be great. Thanks.
Daniel