MatchTable.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <wicket:panel>
  2. <!-- <table id="jqGrid1" style="width:100%;height:200px">
  3. </table> -->
  4. <div wicket:id="matchesCount"></div>
  5. <p></p>
  6. <table wicket:id="matchesTable" class="matchTable">
  7. <thead>
  8. <tr>
  9. <th>Match</th>
  10. <th>Odds 1</th>
  11. <th>Odds X</th>
  12. <th>Odds 2</th>
  13. <th>Calculated Percent 1</th>
  14. <th>Calculated Percent X</th>
  15. <th>Calculated Percent 2</th>
  16. </tr>
  17. </thead>
  18. <!-- <tbody>
  19. <tr>
  20. <td wicket:id="matchTeams">Team names</td>
  21. <td wicket:id="odds1">Team names</td>
  22. <td wicket:id="oddsX">Team names</td>
  23. <td wicket:id="odds2">Team names</td>
  24. <td wicket:id="calculatedPercent1">Team names</td>
  25. <td wicket:id="calculatedPercentX">Team names</td>
  26. <td wicket:id="calculatedPercent2">Team names</td>
  27. </tr>
  28. </tbody> -->
  29. </table>
  30. </wicket:panel>