Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Test</title>
  4. </head>
  5. <body>
  6. <div class="row">
  7. <form name="validationForm" onsubmit="return validateForm()">
  8. <input type="hidden" id="index_value" value="0">
  9. <input type="hidden" id="generated" value="0">
  10. <div class="col-md-3">
  11. <input type="text" id="input1-0" class="form-control" oninput="calculate(0)">
  12. </div>
  13. <div class="col-md-3">
  14. <input type="text" id="input2-0" class="form-control" oninput="calculate(0)">
  15. </div>
  16. <div class="col-md-3">
  17. <input type="text" id="input3-0" class="form-control" readonly>
  18. </div>
  19. <div class="col-md-3">
  20. <input type="button" value="Save" onclick="pushData(0);" />
  21. </div>
  22. </form>
  23. </div>
  24.  
  25. <div class="row" style="margin-top: 20px;">
  26. <div class="col-md-12">
  27. <table class="table table-striped" id="table-0">
  28. <thead>
  29. <tr>
  30. <th class="text text-center">Pcs</th>
  31. <th class="text text-center">Meters</th>
  32. <th class="text text-center">TLM</th>
  33. <th class="text text-center">Action</th>
  34. </tr>
  35. </thead>
  36. <tbody id="result-0">
  37.  
  38. </tbody>
  39. </table>
  40. </div>
  41. </div>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement