Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Markup code
Code Block
html
html
titleHomePage.htmlhtml
<html>
    <body>
               
       <table cellspacing="0" cellpadding="2" border="1">
               <tr wicket:id="orders">
                       <td><span wicket:id="orderId">[order id]</span></td>
                       <td><a wicket:id="alink"><span wicket:id="number">[order number]</span></a></td>
               </tr>
       </table>

       <div wicket:id="itemsWrap"></div>
    </body>
</html>
Code Block
html
html
titleHomePage$ItemsPanel.htmlhtml
<wicket:panel>
       <table cellspacing="0" cellpadding="2" border="1">
               <tr wicket:id="items">
                       <td><span wicket:id="itemId">[id]</span></td>
                       <td><span wicket:id="itemName">[name]</span></td>
               </tr>
       </table>
</wicket:panel>

...