Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
UltraChart does not have focus when using keyboard navigation
posted

Hi,  I am using JAWS.  The problem is that chart never get focus inorder for jaws to read alt text.  Pressing tab simply skips the control. 

How do I gain focus to the chart? 

My chart never has focus. 

 Screen Readers wont work unless the chart has focus and then can read the alt text.

Parents
No Data
Reply
  • 29417
    Offline posted

    Hello shaider,

     

    Thank you for posting in our forum.

     

    You can set a tab index to the img element runtime for example:

     

        $(document).ready(function () {

     

                var img = $("#UltraChart1_BaseImage");

              img[0].tabIndex = 1;

      });

     

    Then you would be able to set focus on the image element on click.

     

    You could also force the control to get focused by setting:

     

       $("#UltraChart1_BaseImage").focus();

     

    The id of the image would be the chart’s client id +”_BaseImage”. You could force this on tab.

     

    Let me know if you have any further questions or concerns.

     

    Best Regards,

    Maya Kirova

    Developer Support Engineer

    Infragistics, Inc.

    http://ko.infragistics.com/support

     

Children