cancel
Showing results for 
Search instead for 
Did you mean: 

Accessibility in HTML components

kroly_horvth
Participant
0 Kudos

Hi,

I am implementing accessibility and met with obstacles using HTMLFragment, HTMLContainer. I have a TransparentContainer which has TAB stop and the accessibilityDescription is read. But when pressing TAB again it jumps to the next TransparentContainer, instead f the HTMLContainer/HTMLFragment, which has a jQuery menu actually.

Can you help me what to do with the HTML/jQuery code so that SAP will jump onto it? Because I can see SAP has a non-HTML-standard implementation of the accessibility feature.

Thanks!

Chopin

Accepted Solutions (1)

Accepted Solutions (1)

kroly_horvth
Participant
0 Kudos

I am trying

      `<nav id="pMainMenu" role="navigation" tabindex="0" title="Menu" lsdata="{0:'NONE',1:'Menu navigation',2:false}" `">`


It's not working, the TAB key is not jumping to it, but jumping to the following TransparentContainer instead.

klaus_keller
Contributor
0 Kudos

Try attributes "tabindex" and "ti", for instance:

<span tabindex="0" ti="0">Anything</span>

This should cause a tab stop.

Cheers,

Klaus

kroly_horvth
Participant
0 Kudos

Thanks, tabindex didn't work, but the ti="0" did the trick. Now since I have a javascript menu, I have to set tabindex+ti option for each menu item available.

Answers (0)