URL param passing
-----------------

                 Key: TRINIDAD-1404
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-1404
             Project: MyFaces Trinidad
          Issue Type: Improvement
          Components: Components
    Affects Versions: 1.0.9-core
         Environment: Windows XP
            Reporter: Jim Dolinski
            Priority: Minor


I am using URL param passing to access a jsf page. The following sun tags work 
within my application,
                
<h:outputLink target="_blank" 
value="#{facesContext.externalContext.requestContextPath}/faces/pages/project/engreport/viewfullengreport.jsp">
        <f:param value="#{row.reportId}" name="reportid"/>
        <h:outputText value="View2"/>
</h:outputLink>

I get 
(http://localhost:8080/erosion/faces/pages/project/engreport/viewfullengreport.jsp?reportid=907),
 but when I switch to trinidad:

<tr:goLink targetFrame="_blank" text="View3" 
destination="#{facesContext.externalContext.requestContextPath}/faces/pages/project
                   /engreportviewfullengreport.jsp">
                <f:param value="#{row.reportId}" name="reportid"/>
</tr:goLink>

The url does not contain the param value: 
http://localhost:8080/erosion/erosion/faces/pages/project/engreport/viewfullengreport.jsp

 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to