1 Reply Latest reply on Jul 28, 2008 5:13 AM by kash_meu

    Portlet Problem

      Hello,

      The following page, does not render in my portlet view.

      <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
      <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
      <%@taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
      
      <f:view>
      
       <a4j:form>
       <h:commandLink
       actionListener="#{UserBean.getUser}">
       <f:param id="sid" value="1"></f:param>
       <h:outputText value="CommandLink"></h:outputText>
      
       </h:commandLink>
       </a4j:form>
      </f:view>


      I get this error message.

      ERROR: Content not available.

      I am using JSF-Portlet bridge by OpenPortal

        • 1. Re: Portlet Problem

          I have got the solution by defining the name attribute of the param tag. Now the page is being properly displayed.

          But there is another problem now. When I click on the link. The page is displayed, but the bean does not populate in the JSF Form. This thing is working when I apply it on simple JSFs