You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Jesper Pedersen (JIRA)" <de...@myfaces.apache.org> on 2007/09/07 14:14:30 UTC

[jira] Commented: (TOMAHAWK-1110) Action / ActionListener on t:headerLink

    [ https://issues.apache.org/jira/browse/TOMAHAWK-1110?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525693 ] 

Jesper Pedersen commented on TOMAHAWK-1110:
-------------------------------------------

Example should read:

  <t:collapsiblePanel id="p1"
                      value="#{b.collapsed}"
                      title="p1">
    <f:facet name="header">
      <t:headerLink value="H1"
                     action="#{b.goMenu}"
                     actionListener="#{b.goAction}">
      </t:headerLink>
    </f:facet>

    <h:panelGrid columns="1">
      <h:panelGroup>
        <h:outputText escape="false" value="Test"/>
      </h:panelGroup>
    </h:panelGrid>
  </t:collapsiblePanel>


> Action / ActionListener on t:headerLink
> ---------------------------------------
>
>                 Key: TOMAHAWK-1110
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-1110
>             Project: MyFaces Tomahawk
>          Issue Type: Bug
>    Affects Versions: 1.1.6
>         Environment: Java 5 + Tomcat 6
>            Reporter: Jesper Pedersen
>
> The action and actionListener attributes of t:headerLink are never evaluated.
> F.ex.
>   <t:collapsiblePanel id="p1"
>                       value="#{b.collapsed}" 
>                       title="p1">
>     <f:facet name="header">
>       <t:headerLink value="H1"
>                      action="#{b.goMenu}">
>         <f:actionListener type="org.apache.test.menu.HeaderLinkActionListener" />
>       </t:headerLink>
>     </f:facet>
>     <h:panelGrid columns="1">
>       <h:panelGroup>
>         <h:outputText escape="false" value="Test"/>
>       </h:panelGroup>
>     </h:panelGrid>
>   </t:collapsiblePanel>
> Log statements in b.goMenu and processAction() are never displayed.

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