Skip to main content

This content has been archived and is no longer being updated. Links may not function; however, this content may be relevant to outdated versions of the product.

Support Article

JAWS 17 table shortcut keys do not recognize some repeat grids

SA-30213

Summary



In later version of JAWS 17 (e.g. JAWS 17.0.2619 ), JAWS table shortcut keys such as 'T' or CTRL + INSERT + 'T', no longer recognize Pega's generated table markup for some grids.


Error Messages



Not Applicable


Steps to Reproduce

  1. Use JAWS table shortcut keys with repeat grids


Root Cause



Recent changes by JAWS 17 treat any tables with role=presentation as non data tables and thus ignored. This includes nested inner tables without said role.

Resolution



Placing this in your UserWorkForm will remove these role so JAWS can announce these tables again.

 
<script>
$(document).ready(function() {
  pega.u.d.attachOnload(function() {
    $("table#EXPAND-OUTERFRAME").each(function(index, table) {
      $(table).removeAttr("role");
    });
  }, true);
});
</script>

 

Published November 10, 2016 - Updated October 8, 2020

Was this useful?

0% found this useful

Have a question? Get answers now.

Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega Community has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.

Close Deprecation Notice
Contact us