Page 122 - JqueryMobile_Manual
P. 122

122

                                                Theming collapsible forms
                                             tryjqmob_themes_collapsible_forms.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">
                 <div data-role="header">
                 <h1>Theming Collapsible Forms</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <form method="post" action="/action_page_post.php">
                     <fieldset data-role="collapsible" data-theme="b" data-content-theme="b">
                       <legend>Click me - I'm collapsible!</legend>
                         <label for="name">Full Name:</label>
                         <input type="text" name="text" id="name" data-theme="a">
                         <p>Favorite Color:</p>
                       <div data-role="controlgroup">
                         <label for="red">Red</label>
                         <input type="checkbox" name="favcolor" id="red" value="red">
                         <label for="green">Green</label>
                         <input type="checkbox" name="favcolor" id="green" value="green">
                         <label for="blue">Blue</label>
                         <input type="checkbox" name="favcolor" id="blue" value="blue" data-theme="a">
                       </div>
                     <input type="submit" data-inline="true" value="Submit" data-theme="b">
                     </fieldset>
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                                     Customize themes
                                                 tryjqmob_themes_custom.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>
               <style>
               .ui-bar-f {
                   color: red;
                   background-color: yellow;
               }
   117   118   119   120   121   122   123   124   125   126   127