methods.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>jQuery Mobile Docs - Radio buttons</title>
  7. <link rel="stylesheet" href="../../../jquery.mobile-1.0.1.min.css" />
  8. <link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
  9. <script src="../../../jquery.js"></script>
  10. <script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
  11. <script src="../../_assets/js/jqm-docs.js"></script>
  12. <script src="../../../jquery.mobile-1.0.1.min.js"></script>
  13. </head>
  14. <body>
  15. <div data-role="page" class="type-interior">
  16. <div data-role="header" data-theme="f">
  17. <h1>Radio buttons</h1>
  18. <a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  19. </div><!-- /header -->
  20. <div data-role="content">
  21. <div class="content-primary">
  22. <form action="#" method="get">
  23. <h2>Radio buttons</h2>
  24. <ul data-role="controlgroup" data-type="horizontal" class="localnav">
  25. <li><a href="index.html" data-role="button" data-transition="fade">Basics</a></li>
  26. <li><a href="options.html" data-role="button" data-transition="fade">Options</a></li>
  27. <li><a href="methods.html" data-role="button" data-transition="fade" class="ui-btn-active">Methods</a></li>
  28. <li><a href="events.html" data-role="button" data-transition="fade">Events</a></li>
  29. </ul>
  30. <p>The radio button has the following methods:</p>
  31. <dl>
  32. <dt><code>enable</code> enable a disabled radio button</dt>
  33. <dd>
  34. <pre><code>
  35. $("input[type='radio']").checkboxradio('enable');
  36. </code></pre>
  37. </dd>
  38. <dt><code>disable</code> disable a select.</dt>
  39. <dd>
  40. <pre><code>
  41. $("input[type='radio']").checkboxradio('disable');
  42. </code></pre>
  43. </dd>
  44. <dt><code>refresh</code> update the custom select</dt>
  45. <dd>
  46. If you manipulate a radio button via JavaScript, you must call the refresh method on it to update the visual styling.
  47. <pre><code>
  48. $("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");
  49. </code></pre>
  50. </dd>
  51. </dl>
  52. </form>
  53. </div><!--/content-primary -->
  54. <div class="content-secondary">
  55. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  56. <h3>More in this section</h3>
  57. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  58. <li data-role="list-divider">Form elements</li>
  59. <li><a href="../docs-forms.html">Form basics</a></li>
  60. <li><a href="../forms-all.html">Form element gallery</a></li>
  61. <li><a href="../textinputs/index.html">Text inputs</a></li>
  62. <li><a href="../search/">Search input</a></li>
  63. <li><a href="../slider/">Slider</a></li>
  64. <li><a href="../switch/">Flip toggle switch</a></li>
  65. <li data-theme="a"><a href="index.html">Radio buttons</a></li>
  66. <li><a href="../checkboxes/">Checkboxes</a></li>
  67. <li><a href="../selects/">Select menus</a></li>
  68. <li><a href="../forms-themes.html">Theming forms</a></li>
  69. <li><a href="../forms-all-native.html">Native form elements</a></li>
  70. <li><a href="../forms-sample.html">Submitting forms</a></li>
  71. </ul>
  72. </div>
  73. </div>
  74. </div><!-- /content -->
  75. <div data-role="footer" class="footer-docs" data-theme="c">
  76. <p>&copy; 2011-2012 The jQuery Project</p>
  77. </div>
  78. </div><!-- /page -->
  79. </body>
  80. </html>