- Posts: 15
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
Hi,lstrange wrote: I know this thread primarily focuses on this template and its survey output being accessible and this may likely be a separate topic, but can anyone speak to the accessibility of the Limesurvey admin interface in developing surveys? I have a blind user that is looking to switch to a different survey software and I am checking on the accessibility of Limesurvey. Thanks.
I think 2.5X must not be used for accessibility. It's the reason why i completly rewrite all HTML fror develop/3.0 version, see tinyurl.com/z4fjkt2 , and about label : bugs.limesurvey.org/view.php?id=11449cortxdp wrote: I've been testing the 2.5x version without your plugin and I notice the extensive use of aria attributes instead of native tag and attributes. .....
I think same about 2.5X. Hope 3.0 are really beter than 2.5X and 2.6I do not want to be rude but I think that it's a step backward in this regard.
No need : i know it don't work : framagit.org/SondagePro-LimeSurvey-plugi.../issues/8#note_41662I will reactivate your plugin and test it with this version.
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>