[jboss-cvs] jboss-seam/examples/seampay/view ...

Norman Richards norman.richards at jboss.com
Sun Oct 22 15:40:02 EDT 2006


  User: nrichards
  Date: 06/10/22 15:40:02

  Modified:    examples/seampay/view  search.xhtml
  Log:
  add recurring payments
  
  Revision  Changes    Path
  1.3       +9 -2      jboss-seam/examples/seampay/view/search.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: search.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seampay/view/search.xhtml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- search.xhtml	21 Oct 2006 22:23:45 -0000	1.2
  +++ search.xhtml	22 Oct 2006 19:40:02 -0000	1.3
  @@ -61,7 +61,15 @@
                   </tr>
                   <ui:repeat value="#{accountHome.instance.payments}" var="payment">
                       <tr>
  -                        <td>#{payment.active}</td>
  +                        <td>
  +                            <s:link action="#{paymentHome.cancel}" value="cancel" linkStyle="button" rendered="#{payment.active}">
  +                                <f:param name="paymentId" value="#{payment.id}"/>
  +                            </s:link>
  +                            <h:outputText value="not active" rendered="#{!payment.active}" />
  +                        </td>
  +                            
  +
  +
                           <td>#{payment.payee}</td>
                           <td>
                               <h:outputText value="#{payment.amount}">
  @@ -91,7 +99,6 @@
               <h2>Make a payment from account #{accountHome.instance.accountNumber}:</h2>
               <h:form>
                   <s:validateAll>
  -
                       <table>
                           <tr>
                               <td>To:</td>
  
  
  



More information about the jboss-cvs-commits mailing list