I have a need to create command links dynamically based on content coming from elsewhere. When a user clicks on a link it should call a method in a managed bean, and the method needs to know which link was clicked.
I can create the command links using the following code:
JSF:
    <h:outputText value="#{myBean.dynamicLinks}" escape="false" />
Bean:
    public String getDynamicLinks(){
        // Return an html string that contains a set of <a> elements, based on the dynamic content
    }
This works fine, but what I can't work out is how my <a> elements can call back into the bean.
 
     
    