- Posts: 18
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
DenisChenu wrote: OK, fixed.
Some question :
- Trying to use role="radiogroup" in arry by columns where radiogroup are on col tag : Test link . An advice here ?
DenisChenu wrote: OK, fixed.
Some question :
- Ok to use role="radiogroup" inside a role group test link Here with single choice with comment
It used for phone view too, not specific for accessibility.2. The hidden label for each radio button repeat the question. I would use aria-labelledby on the input instead and pointing to : First the question and second the response (aria-labelledby="id_column_header id_row_header »)
<table role="group"> <thead> <tr> <td></td> <th id="SubQuestionId-1">Sub question 1</th> <th id="SubQuestionId-2">Sub question 2</th> </tr> </thead> <tbody> <tr> <th aria-hidden="true"> Answer </th> <td data-tooltip="Sub Question 1"> <input type="radio" aria-describedby="SubQuestionId-1" name="subsuestion1"/> <label class="sr-only">Sub question 1</label> </td> <td data-tooltip="Sub Question 2"> <input type="radio" aria-describedby="SubQuestionId-2" name="subsuestion2"/> <label class="sr-only">Sub question 2</label> </td> </tr> </tbody> </table>
I know : i made a Feature request about this 2 options.emilyjohn wrote: Great idea because the page title is read after the page validation and it could tell screen reader users.For error detection in addition to the error message for each field, the best thing is to have the error list at the beginning of the form.