Here's the equivalent using "old" style JSP. This works! But I'd prefer to make it work the "other" way.
<%@ page contentType="text/html; charset=utf-8" buffer="none"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%> <%@ taglib uri="http://myfaces.apache.org/extensions" prefix="x"%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%> <f:loadBundle basename="web.bundles.Messages" var="msg"/> <f:view locale="#{facesContext.externalContext.request.locale}"> <html> <head> <link rel="stylesheet" href="<%= request.getContextPath() %>/style/css/project.css" type="text/css"/> <title><h:outputText value="#{msg.title}" /></title> </head> <body> <c:import url="/results/pageheader.jsp"/> <h:panelGrid width="100%" style="height:100%;" columns="2" columnClasses="tree_panel, content_panel"> <t:collapsiblePanel collapsed="false"> <c:import url="/results/navigationtree.jsp"/> Ideally, I'd get this working using the "newer" XML style, but if there's no way to do it, this will have to work. :-( Wayne

