WebAIM - Web Accessibility In Mind

E-mail List Archives

Re: JAWS and disabled combobox options

for

From: JP Jamous
Date: Jan 11, 2017 9:51AM


I am following this post and thinking of it as I don't have the time to test it. I want to fall back to Windows Development for a second to address it.

When a list view or combo box loaded data from a DB, programmers and I always repopulated the items from the DB or an array in the RAM. The question becomes, why do you want to disable a dropdown item if there is no way to interact with it? Simply remove it by using style="display: none;" Problem solved.

-----Original Message-----
From: WebAIM-Forum [mailto: <EMAIL REMOVED> ] On Behalf Of Jonathan Avila
Sent: Wednesday, January 11, 2017 10:24 AM
To: WebAIM Discussion List < <EMAIL REMOVED> >
Subject: Re: [WebAIM] JAWS and disabled combobox options

> Just wondering if anyone has tackled this and how they managed to communicate to the screen reader user that the option is there and disabled?

The support of aria-disabled doesn't seem to work correctly in my tests with IE and JAWS. But it does seem to be communicated in Firefox. You would then need to communicate somehow visually that the option was disabled as well -- perhaps with some styling?

Jonathan

Jonathan Avila
Chief Accessibility Officer
SSB BART Group
<EMAIL REMOVED>
703.637.8957 (Office)
Vis Visit us online: Website | Twitter | Facebook | LinkedIn | Blog See you at CSUN in March!

The information contained in this transmission may be attorney privileged and/or confidential information intended for the use of the individual or entity named above. If the reader of this message is not the intended recipient, you are hereby notified that any use, dissemination, distribution or copying of this communication is strictly prohibited.



-----Original Message-----
From: WebAIM-Forum [mailto: <EMAIL REMOVED> ] On Behalf Of Paul Collins
Sent: Wednesday, January 11, 2017 1:04 AM
To: WebAIM Discussion List
Subject: [WebAIM] JAWS and disabled combobox options

Hi friends.

I'm currently working on a project where individual options in a select box are disabled, using the *disabled* attribute:

*<select>*
* <option>option 1</option>*
* <option disabled>option 2</option>*
*</select>*

When using the keyboard arrow keys, it skips over each disabled option.
This also means *JAWS* doesn't read out the disabled option either.

Just wondering if anyone has tackled this and how they managed to communicate to the screen reader user that the option is there and disabled?

Thanks for any help.
Paul