8 Replies Latest reply on Jan 8, 2007 6:34 PM by kukeltje

    actions on items from (framework) entity-query ?

      Hi
      I have an entity bean but I try to do without a session bean to manage it. Instead I use the framework to define an entity-query that I use in a table. Getting and displaying the members works fine, but I cannot call the methods.

      <ui:repeat value="#{myquery.resultList}" var="a">
       <tr>
       <td><h:outputText value="#{a.number}" /></td>
       <td>
       <s:link action="#{a.show}" value="show" rendered="#{!a.visible}" />
       <s:link action="#{a.hide}" value="hide" rendered="#{a.visible}" />
       </td>
       </tr>
      </ui:repeat>
      
      The link will get the correct text (show or hide) depending on the value of the member visible but the actions will not work.

      I guess this is not the proper way to do this, but I'm sure you understand what I try to do.
      Can anyone tell me a better approach?
      /Bengt