Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    JAWS can't read pop up window text

    Using window class in GWT, display the window with text and two buttons. ariarole set on the buttons. Jaws only reads the text of the pop up window after clicking a button on the pop up window. Any ideas why this is happening?

    #2
    Wanted to update of a solution we found, it seems like if we set the role to "alert" Jaws reads the modal window contents. Something like this:

    Code:
    <window>.setAriaRole("alert");
    More on this here: http://www.paciellogroup.com/blog/2010/10/jaws-support-for-aria/

    Comment


      #3
      But we've already got ariarole set to "dialog" in this case, which JAWS claims to read (according to the URL you just posted). Note the framework automatically puts focus in the default button.

      Comment


        #4
        For some reason, "alert" seems to be working instead of "dialog". As per this link http://www.paciellogroup.com/blog/20...port-for-aria/,

        Role Comments
        ---- -----------------------------------------------------------
        alert - This role does not appear in either the virtual buffer or forms mode, but its contents are spoken by JAWS when an alert is made visible.

        dialog - This role will be announced only when a child of the dialog gets focus, and will not appear in the virtual buffer.

        We are using Jaws 13.

        Comment


          #5
          Are you seeing the button automatically get focus? If you provided your own buttons and you aren't focusing on them, you could create the problem described.

          Comment


            #6
            I think the issue was in the session timeout modal windows, when it appears in the app after a specified time, the contents were not read by JAWS, after we added the role of "alert" its working fine.

            Comment

            Working...
            X