David Delbecq wrote:
Please provide the full jsp please. Side note: JSF and non-JSF tags do not mix very well.
Here is the full JSP page: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %> <f:view> <%@ include file="../doctype.jspf"%> <html lang="de" xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <%@ include file="../header.jspf"%> <title>Appname</title> </head> <body> <div class="data"> <h:form id="myform"> <f:verbatim><div class="panel"></f:verbatim> <f:verbatim><div class="panelHeader"></f:verbatim> <h:commandLink action="#{handler.switch}" styleClass="panelLink"> <h:graphicImage value="collapsed.png" rendered="#{handler.collapsed}"/> <h:graphicImage value="expanded.png" rendered="#{!handler.collapsed}"/> <h:outputText value=" bla"/> </h:commandLink> <f:verbatim></div></f:verbatim> <h:panelGroup rendered="#{!handler.collapsed}"> <c:forEach items="#{handler.fields}" var="it"> <h:inputText id="fieldPercent" value="#{it.percentValue}"/> <h:message for="fieldPercent"/> </c:forEach> <f:verbatim><p></f:verbatim> <h:commandButton id="buttonMore" value="#{msg.more}" action="#{handler.more}"/> <h:commandButton id="buttonDelete" value="#{msg.delete}" action="#{handler.delete}"/> <f:verbatim></p></f:verbatim> </h:panelGroup> <f:verbatim></div></f:verbatim> </h:form> </div> </body> </html> </f:view> cheers, Gerald --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]