Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. "{"data":[["Row1","0","1","1","2","6","0","1"],["Row2","16","11","13","13","16","2","5"],["Row3","0","1","1","0","1","0","0"],["Row4","14","8","19","16","24","3","0"],["Row5","4","0","2","1","2","2","1"]]}"
  2.  
  3. <script type="text/javascript">
  4. $(document).ready(function() {
  5. $('#incVolumes').dataTable( {
  6. "ajax":"http://localhost/API/Reporting/Volumes"
  7. } );
  8. } );
  9. </script>
  10. <table id="incVolumes" class="display" cellspacing="0" width="100%">
  11. <thead>
  12. <tr>
  13. <th>Worksource</th>
  14. <th>Col1</th>
  15. <th>Col2</th>
  16. <th>Col3</th>
  17. <th>Col4</th>
  18. <th>Col5</th>
  19. <th>Col6</th>
  20. <th>Col7</th>
  21. </tr>
  22. </thead>
  23.  
  24. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement