Changes between Version 1 and Version 2 of Ticket #32338
- Timestamp:
- Jan 10, 2021, 9:52:43 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32338 – Description
v1 v2 13 13 Here is a screenshot demonstrating the label issue with macOS VoiceOver’s rotor. Note how the first field has the wrong label due to the markup. 14 14 15 [[Image(https://code.djangoproject.com/ attachment/ticket/32338/radio-select-first-input-label.png)]]15 [[Image(https://code.djangoproject.com/raw-attachment/ticket/32338/radio-select-first-input-label.png)]] 16 16 17 17 == CheckboxSelectMultiple issues … … 33 33 Here is sample markup to implement the above. The `div` aren’t needed, I’ve only added them to preserve the vertical layout of the current implementation: 34 34 35 {{{ #!html35 {{{ 36 36 <fieldset> 37 37 <legend>Radio choice required:</legend> … … 44 44 <div><label for="id_radio_choice_required_3"><input type="radio" name="radio_choice_required" value="four" required="" id="id_radio_choice_required_3"> 45 45 Four</label></div> 46 <span class="helptext">Help</span>46 <span class="helptext">Help</span> 47 47 </fieldset> 48 48 }}}