Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <table id="tablepage" class="table table-striped table-hover dt-responsive" cellspacing="0" width="100%">
  2. <thead>
  3. <tr>
  4. <th style="width: 150px;">Kode Barang</th>
  5. <th style="width: 150px;">Harga</th>
  6. <th style="width: 150px;">Jenis Barang</th>
  7. <th style="width: 150px;">Merk</th>
  8. <th>Pilih</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr th:each="barang : ${barangList}">
  13.  
  14. <td>
  15. <form method="post" action="">
  16. <input type="submit" value="Add" class="btn btn-medium btn-success" />
  17. <input type="hidden" name="_eventId" value="addBarang" />
  18. <input type="hidden" th:name="kd_brg" th:value="${barang.Kd_Brg}" />
  19. </form>
  20. </td>
  21.  
  22. <td th:text="${barang.Kd_Brg}">MCM-200</td>
  23. <td th:text="${barang.Harga_Jual}">2000</td>
  24. <td th:text="${barang.Jns_Brg}">BLENDER</td>
  25. <td th:text="${barang.Merk}">RINNAI</td>
  26. </tr>
  27. </tbody>
  28. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement