Changeset 8248 for dijit/trunk/tests/form/test_Checkbox.html
- Timestamp:
- 04/23/07 12:13:03 (21 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/tests/form/test_Checkbox.html (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/tests/form/test_Checkbox.html
r7245 r8248 35 35 }); 36 36 </script> 37 <style> label { margin-right: 0.80em; } </style> 37 38 </head> 38 39 <body class="tundra" style="padding: 50px;"> 39 40 40 41 <p> 41 Here are some checkboxes. Try clicking, and hovering :42 Here are some checkboxes. Try clicking, and hovering, tabbing, and using the space bar to select: 42 43 </p> 43 44 … … 62 63 <br> 63 64 <div id="checkboxContainer"></div> 64 <label for="c heckboxContainer">cb6: instantiated from script</label>65 <label for="cb6">cb6: instantiated from script</label> 65 66 <br> 67 <p> 68 Here are some radio buttons. Try clicking, and hovering, tabbing, and arrowing 69 </p> 66 70 <p> 67 71 <span>Radio group #1:</span> … … 74 78 </p> 75 79 <p> 76 <span>Radio group #2: </span>80 <span>Radio group #2: (no default value, and has breaks)</span><br> 77 81 <input type="radio" name="g2" id="g2rb1" value="top40" dojoType="dijit.form.RadioButton"/> 78 <label for="g2rb1">top 40</label> 82 <label for="g2rb1">top 40</label><br> 79 83 <input type="radio" name="g2" id="g2rb2" value="oldies" dojoType="dijit.form.RadioButton"/> 80 <label for="g2rb2">oldies</label> 81 <input type="radio" name="g2" id="g2rb3" value="country" dojoType="dijit.form.RadioButton" disabled="disabled" checked="checked"/> 82 <label for="g2rb3">country</label> 84 <label for="g2rb2">oldies</label><br> 85 <input type="radio" name="g2" id="g2rb3" value="country" dojoType="dijit.form.RadioButton"/> 86 <label for="g2rb3">country</label><br> 87 (Note if using keyboard: tab to navigate, and use arrow or space to select) 83 88 </p> 84 89 <p> … … 86 91 <input type="radio" name="g3" id="g3rb1" value="rock"/> 87 92 <label for="g3rb1">rock</label> 88 <input type="radio" name="g3" id="g3rb2" value="jazz" />93 <input type="radio" name="g3" id="g3rb2" value="jazz" disabled="disabled"/> 89 94 <label for="g3rb2">jazz</label> 90 <input type="radio" name="g3" id="g3rb3" value="classical" disabled="disabled"checked="checked"/>95 <input type="radio" name="g3" id="g3rb3" value="classical" checked="checked"/> 91 96 <label for="g3rb3">classical</label> 92 97 </p>