Show
Ignore:
Timestamp:
04/23/07 12:13:03 (21 months ago)
Author:
becky
Message:

from david bolter
fixes #2420

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/form/test_Checkbox.html

    r7245 r8248  
    3535}); 
    3636</script> 
     37<style> label { margin-right: 0.80em; } </style> 
    3738</head> 
    3839<body class="tundra" style="padding: 50px;"> 
    3940 
    4041<p> 
    41 Here are some checkboxes.  Try clicking, and hovering: 
     42Here are some checkboxes.  Try clicking, and hovering, tabbing, and using the space bar to select: 
    4243</p> 
    4344 
     
    6263        <br> 
    6364        <div id="checkboxContainer"></div> 
    64                 <label for="checkboxContainer">cb6: instantiated from script</label> 
     65                <label for="cb6">cb6: instantiated from script</label> 
    6566        <br> 
     67<p> 
     68Here are some radio buttons.  Try clicking, and hovering, tabbing, and arrowing 
     69</p> 
    6670        <p> 
    6771                <span>Radio group #1:</span> 
     
    7478        </p> 
    7579        <p> 
    76                 <span>Radio group #2:</span> 
     80                <span>Radio group #2: (no default value, and has breaks)</span><br> 
    7781                <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> 
    7983                <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) 
    8388        </p> 
    8489        <p> 
     
    8691                <input type="radio" name="g3" id="g3rb1" value="rock"/> 
    8792                <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"/> 
    8994                <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"/> 
    9196                <label for="g3rb3">classical</label> 
    9297        </p>