Title: Re: a way to pass parameters in el expressions

Mike,
  I am trying to call a function like below (to a java bean class)
and need to be able to pass a paramater into the function somehow.

[code]
     <c:forEach var="processDefinition" items="#{participantBean.allProcessDefinitions}">
      <tr  class="normal" >         <td class="selectable"><h:outputText value="#{processDefinition.name}" />
        <td class="selectable"><h:outputText value="#{processDefinition.version}" /></td>
THIS NEXT LINE
        <td class="selectable"><h:outputText value="#{participantBean.allProcessInstances(processDefinition.id)}" /> </td>
      </tr>
      </c:forEach>
[/code]


>Hey Lance,

>This would be a great wiki topic so it doesn't get lost.

>It's probably worth noting that if you're using facelets, you can
>simply create a real changeToUpperCase() user-defined el function.

Reply via email to