[Koha-bugs] [Bug 25244] New: Accessibility: Checkboxes on the search results page do not contain specific aria labels

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Apr 22 08:56:12 CEST 2020


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25244

            Bug ID: 25244
           Summary: Accessibility: Checkboxes on the search results page
                    do not contain specific aria labels
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: OPAC
          Assignee: oleonard at myacpl.org
          Reporter: martin.renvoize at ptfs-europe.com
        QA Contact: testopia at bugs.koha-community.org
                CC: oleonard at myacpl.org, testopia at bugs.koha-community.org
        Depends on: 25243
            Blocks: 23003

Multiple generic ‘Select this item’ check boxes are present on the search
results pages that some users may not be able to differentiate between when
navigating out of context.

1/ Search for an item
2/ Note that the results page has multiple checkboxes with matching aria tags.

Current code:
<td class="select selectcol">
<input name="biblionumber" class="cb" id="bib28526" aria-label="Select this
item"
type="checkbox" value="28526">
<label for="bib28526"></label>
</td>

Solution:
Ensure that all form elements are uniquely descriptive of their purpose. For
example:

<td class="select selectcol">
<input name="biblionumber" class="cb" id="bib28526" aria-label="Select ‘Taxing
time for housing’" type="checkbox" value="28526">
<label for="bib28526"></label>
</td>


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23003
[Bug 23003] Accessibility improvements
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25243
[Bug 25243] Accessibility: 2.4.6 Headings and Labels
-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list