h:commandLink and a4j:commandLink does not work in rich:extendedDataTable
-------------------------------------------------------------------------

                 Key: RF-10750
                 URL: https://issues.jboss.org/browse/RF-10750
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: 4.0.0.CR1
         Environment: tested with:
------------
tomcat-6.0.29
and
tomcat-7.0.11

myfaces-2.0.4
and
myfaces-2.0.5-snapshot
and
mojarra-2.1.1-b02

richfaces-4.0.0-CR1
and
richfaces-4.0.0-SNAPSHOT (13.03.2011) 
            Reporter: Rene O


<h:form>
<rich:extendedDataTable
        .... >
        
        <f:facet name="header">
                <h:outputText value="Table" />
        </f:facet>
        
        <rich:column>
                <f:facet name="header">
                        <h:outputText value="action" />
                </f:facet>
                <h:commandLink value="download" immediate="true" 
action="#{myCtr.doSomething}" />
        </rich:column>
        ...
</rich:extendedDataTable>
</h:form>

@ManagedBean
@RequestScoped
MyCtr {
 ... 
        public void doSomething(){
                System.out.println("doSomething");
        } 
 ...
}

If i use a h:commandLink within the rich:extendedDataTable, the action is never 
called. The same behaviour applies to a4j:commandLink.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
richfaces-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/richfaces-issues

Reply via email to