davegimo

ordersInterface

Jan 20th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html lang="en">
  4. <head>
  5.     <meta charset="utf-8">
  6.  
  7.     <title>The HTML5 Herald</title>
  8.     <meta name="description" content="The HTML5 Herald">
  9.     <meta name="author" content="SitePoint">
  10.  
  11.     <link rel="stylesheet" href="css/styles.css?v=1.0">
  12.  
  13. </head>
  14.  
  15. <body>
  16. <!--https://vuejsexamples.com/vuejs-tables-and-select-all-checkbox/-->
  17.  
  18.  
  19.  
  20. <table style="width:100%">
  21.     <tr>
  22.         <th><input type="checkbox" v-model="selectAll" @click="select"></th>
  23.         <th>Select all</th>
  24.  
  25.     </tr>
  26.  
  27.  
  28.  
  29.     <%for(int i = 0;i<5;i++){ %>
  30.     <tr>
  31.         <td><input type="checkbox" v-model="selectAll" @click="select"></td>  //qid
  32.         <td><%=${listValue.get("FILENAME")} % </td>   //dokuID
  33.  
  34.     </tr>
  35.     <%} %>
  36.  
  37.  
  38.     <tr>
  39.  
  40. <!--          make the get calls by calling a function in javascript-->
  41.         <button onclick="downloadSelected()"> Download </button>
  42.  
  43.     </tr>
  44.  
  45.  
  46. </table>
  47.  
  48. </body>
  49. </html>
Add Comment
Please, Sign In to add comment