Hi,
I wonder what have happened to t:hidden*.
*I am getting the exception
javax.servlet.jsp.JspException: Undefined component type
org.apache.myfaces.tobago.HiddenInput
at
org.apache.myfaces.tobago.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:149)
at
org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:95)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
at
org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
at
org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
at
org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
I looked through mailing list for this subject. No-one had experienced
this yet ?
Here is my code that causes exception above
<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="t"%>
<%@ taglib uri="http://myfaces.apache.org/tobago/extension" prefix="tx"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:view>
<f:loadBundle basename="messages" var="msgs"/>
<t:page id="page" width="1000" label="#{msgs.pageTitle}">
<t:script file="resource/html/standard/standard/script/rest.js"/>
<t:hidden id="currentViewID" value="#{navigator.viewId}"/>
<t:include value="jsp/header.jsp"/>
<f:facet name="layout">
<t:gridLayout border="0" margin="10px" columns="1*"
rows="1*;fixed"/>
</f:facet>
<t:cell>
<jsp:doBody/>
</t:cell>
<t:include value="jsp/footer.jsp"/>
</t:page>
</f:view>