Tabbing through graphics on the ArcGIS JavaScript Mapping application

2360
0
10-21-2015 10:46 AM
ParameswaranPalanivel
New Contributor

Hi,

I would like to tab through each graphics present on the  map viewer for example, if there are  five text element on the map viewer I would like to use the tab key to tab through each text element so that the screen reader would read the description of the text element. I was trying to set the tabindex property for the point graphics on the map using the getNode() property of the graphics object like below

//

map.graphics.add(grTxtElement);

var lblElement=grTxtElement.getNode();

lblElement.tabIndex=1;

//

The tab key works in Chrome but not in IE. Any ideas or suggestions?

Thanks!

Param

0 Kudos
0 Replies