Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  5. <%@ page session="true"%>
  6. <%@ page buffer="99kb" autoFlush="true"%>
  7. <title>EXAMPLE</title>
  8. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
  9. <link href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/css/dataTables.bootstrap.min.css" rel="stylesheet" />
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  11. <script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/jquery.dataTables.min.js"></script>
  12. <script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/dataTables.bootstrap.min.js"></script>
  13. </head>
  14. <body>
  15. <script type="text/javascript">
  16. $(document).ready(function() {
  17. $('#exampleTable').DataTable();
  18. });
  19. </script>
  20. <div class="col-md-12">
  21. <div class="panel panel-default">
  22. <div class="table-responsive">
  23. <table class="table table-bordered table-striped table-hover" id="exampleTable">
  24. <thead>
  25. <tr>
  26. <th><b>PLAYER</b></th>
  27. <th><b>POSITION</b></th>
  28. <th><b>POINTS</b></th>
  29. <th><b>TEAM</b></th>
  30. <th><b>SIZE</b></th>
  31. <th><b>AGE</b></th>
  32. <th><b>GAMES</b></th>
  33. <th><b>COLUMN</b></th>
  34. <th><b>COLUMN2</b></th>
  35. <th><b>COLUMN3</b></th>
  36. <th><b>COLUMN4</b></th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <c:forEach items="${players}" var="player" varStatus="j">
  41. <tr>
  42. <td>Player-${j.count}</td>
  43. <td></td>
  44. <td></td>
  45. <td></td>
  46. <td></td>
  47. <td>${player.age}</td>
  48. <td></td>
  49. <td>AA</td>
  50. <td>BB</td>
  51. <td>CC</td>
  52. <td>DD</td>
  53. </tr>
  54. </c:forEach>
  55. </tbody>
  56. </table>
  57. </div>
  58. </div>
  59. </div>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement