Primefaces 2.2.1

Mojarra 2.1.2

I have a sophisticated method in my jsf bean :

public void saySomething() {
   log.debug("SAY SOMETHING !");
}

And a simple button in the jsf :

<p:commandButton
   value="say something"
   process="@this" update="@none" action="#{timetableBean.saySomething}" />

Clicking on the button, results in my simple logging :

DEBUG PhaseTracker - BEFORE PHASE INVOKE_APPLICATION 5
DEBUG TimetableBean - SAY SOMETHING !
DEBUG PhaseTracker - AFTER PHASE INVOKE_APPLICATION 5

Let's go to next simple case. When placing that identical button inside a p:dataList like this :

<p:dataList id="groupUsers2" value="#{timetableBean.group.users}" var="user" itemType="circle" style="padding:0; margin: 0;">
   <p:commandButton
      value="#{user.data['selected'] ? 'V' : 'X'}"
      process="@this" update="@none" action="#{timetableBean.saySomething}" />
   <p:commandLink value="#{user.userId} - #{user.name}" process="@this" />
</p:dataList>

Clicking on the button, results in my simple logging :

DEBUG PhaseTracker - BEFORE PHASE INVOKE_APPLICATION 5
DEBUG PhaseTracker - AFTER PHASE INVOKE_APPLICATION 5

The method of saySomething() was not called !

What did i do wrong ?

link|improve this question

The problem might be the process attribute. What is this really saying because a commandButton component will be created for each element of #{timetableBean.group.users}. What does @this supposed to actually process? – maple_shaft Jul 20 '11 at 14:38
@maple_shaft: i changed it into process="@form", and it's still not working, the listener method is not invoked .. – Albert Kam Jul 20 '11 at 16:39
feedback

1 Answer

up vote 4 down vote accepted

Problem solved.

Found the solution in here

In order for listener to be invoked, the components inside the p:dataList should be encapsulated with p:column

<p:dataList id="groupUsers2" value="#{timetableBean.group.users}" var="user" itemType="circle" style="padding:0; margin: 0;">
  <p:column>
   <p:commandButton
      value="#{user.data['selected'] ? 'V' : 'X'}"
      process="@this" update="@none" action="#{timetableBean.saySomething}" />
   <p:commandLink value="#{user.userId} - #{user.name}" process="@this" />
  </p:column>
</p:dataList>

Strange though, i didnt see this in the documentation, as it doesnt specify the p:column. Perhaps it's in the errata for primefaces 2.2.1 doc ?

Related problems here.

link|improve this answer
Yes I don't see it in the 2.2.1 documentation either. Sorry I wasn't more of a help. – maple_shaft Jul 20 '11 at 17:17
Page 118 states that. – Cagatay Civici Jul 21 '11 at 22:17
@Cagatay Civici: Hi Optimus. In my 2.2 doc, p.118 is talking about ajax pagination, and i still dont see it saying about p:column. Perhaps it's implicit ? – Albert Kam Jul 23 '11 at 3:34
@maple_shaft: Thank you. Appreciate the effort ! – Albert Kam Jul 23 '11 at 3:35
feedback

Your Answer

 
or
required, but never shown

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