Page 58 - JqueryMobile_Manual
P. 58

58

                     </tbody>
                   </table>
                 </div>

                 <div data-role="footer">
                   <h1>Footer Text</h1>
                 </div>
               </div>

               </body>
               </html>

                                           Change the toggle table button text
                                              tryjqmob_tables_btntext.html
               <!DOCTYPE html>
               <html>
               <head>
               <meta name="viewport" content="width=device-width, initial-scale=1">
               <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
               <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
               <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
               </head>
               <body>

               <div data-role="page" id="pageone">
                 <div data-role="header">
                   <h1>Column Toggle Table</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <table data-role="table" data-mode="columntoggle" class="ui-responsive" data-column-btn-
               text="Click me to hide or shown columns!" id="myTable">
                     <thead>
                       <tr>
                         <th data-priority="6">CustomerID</th>
                         <th>CustomerName</th>
                         <th data-priority="1">ContactName</th>
                         <th data-priority="2">Address</th>
                         <th data-priority="3">City</th>
                         <th data-priority="4">PostalCode</th>
                         <th data-priority="5">Country</th>
                       </tr>
                     </thead>
                     <tbody>
                       <tr>
                         <td>1</td>
                         <td>Alfreds Futterkiste</td>
                         <td>Maria Anders</td>
                         <td>Obere Str. 57</td>
                         <td>Berlin</td>
                         <td>12209</td>
                         <td>Germany</td>
                       </tr>
   53   54   55   56   57   58   59   60   61   62   63