I've created a composite component that has a commandLink embedded inside of a ui:repeat. I need to be able to dynamically change the method that is called via the commandLink's action property but it doesn't seem to be possible due to the fact that you need to specify the ID of the commandLink in the

Since the commandLinks are in a UI:repeat, they all have a dynamic ID.

As a workaround, I'm trying to use setPropertyActionListener on the command link. However, it doesn't look like the method is ever being called. Am I missing something? Is this the wrong way to go about what I want?

Here is some sample code.

Composite Component:

<ui:repeat value="#{cc.attributes.value}" var="aUser">
<li class="ui-widget-content ui-state-default q-userListResult">   
        <p:commandLink 
        styleClass="q-userList-resultLink"
                update=":userList:q-userList-formUsers:userToolTip">
                <f:setPropertyActionListener value="{aUser}" target="#{cc.attributes.resultLinkActionListener}"/>

Using Page:

<q:userList id="userList" 
   value="#{caseWizardBackingBean.companyContacts}" 
   renderHeader="false" 
   resultLinkActionListener="#{caseWizardBackingBean.selectedCompanyContact}"/>

Bean:

private CTProfile selectedCompanyContact;
public CTProfile getSelectedCompanyContact() { return this.selectedCompanyContact; }
public void setSelectedCompanyContact(CallTrackProfile ctp) { this.selectedCompanyContact = ctp; }    

I tried adding some debug statements and breakpoints into the property's getter and setter but they are never hit. I'm guessing something odd is happening because all of the examples I can find show that this should work (but they don't use a composite component).

I should point out, I'm using the Primefaces commandLink but this seems to happen with the regular commandLink too.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

OK, from what I can tell this can't be done in the current version of JSF (2.1.3).

In order to work around the issue I made the component a single commandLink and then the using page has a ui:repeat with the commandLink inside of it.

link|improve this answer
feedback

You shouldn't use the f:setPropertyActionListener tag with a Primefaces command link. The commandLink has two attributes that you could optionally use to specify an action, action and actionListener.

From the Primefaces Guide 2.2.1:

action | null | MethodExpr/String A method expression or a String outcome that’d be processed when link is clicked.

actionListener | null | MethodExpr An actionlistener that’d be processed when link is clicked.

link|improve this answer
Ok, let's assume that I am using a regular commandLink then, what would the procedure be? I can't use the PF action method because there is no way to expose the commandLink's action without specifying the commandLink's ID in the composite:attribute's "targets" section. Since the commandLink's ID is dynamic (it's in a ui:repeat) I can't specify what to target. As to the PF actionListener, I wanted to use it but I can't seem to figure out a way to pass a value into the function. Remember, this needs to be exposed as an attribute to the using page. – jjross Sep 7 '11 at 16:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.