Closed (fixed)
Project:
Views (for Drupal 7)
Version:
7.x-3.0-beta3
Component:
User interface
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
22 May 2011 at 11:51 UTC
Updated:
4 Jan 2014 at 00:53 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
dawehnerThis makes sense to certain extends.
Per default the "advanced settings" are hidden via display: none. Once you click on the h3 the settings appear again and you can edit them. Are there any kind of help to define for you that it's a toggle element?
If you want to have it open all the time you could run the drush commando "drush views-dev" which sets up some variables for you.
Hopefully this was helpful for you.
Comment #2
Everett Zufelt commentedWe can try setting role="link" on the h3 and making sure that it can be activated from the keyboard along with from the mouse.
See: http://www.w3.org/TR/wai-aria/roles#link
Comment #3
dawehnerSo does this patch helps you?
Do you have other suggestions where to place some special markup?
Comment #4
dawehnerWrong status
Comment #5
Everett Zufelt commentedThanks for the patch. I didn't apply it, but did look at it.
This patch will help with making sure that the link is recognized by AT, but won't make it function from the keyboard.
Actually one thing for the link is that it should be either:
This is so that AT recognizes it as a link within a heading, with
<h3 role="link">Advanced</h3>AT will not recognize the H3.Comment #6
Everett Zufelt commentedSo, in general, since this is a control, it needs:
1. To receive focus
2. To visually show that it has received focus
3. To have a semantic role (either through using an anchor or role="link"
4. To be able to be activated via keyboard and pointing device
Comment #7
dawehnerOkay i tryed out the first solution you posted and manually testing it by using "Tab" worked fine.
So it receives focus. Commited to 7.x-3.x. Can you have a look whether this is fine for you?
Comment #8
merlinofchaos commented