Unplanned
Last Updated: 13 Jun 2023 13:30 by ADMIN
Nagarjuna
Created on: 09 Jun 2023 22:53
Category: Kendo UI for jQuery
Type: Feature Request
2
Accessibility screen readers are not reading Header content in the Dialog window

This improvement is for Accessibility related on Dialog window.

When we create a dialog window using the below code snippet, Screen reader is not reading the Header content or Header level of the Dialog window when we press 'H' key. NVDA screen reader is unable to find any header tags in the Kendo dialog. Users of NVDA screen reader will find it difficult to understand the UI screen. So, I request Kendo UI team include this feature to be able to configure using code for improving this accessibility feature. Thanks.

Link to Kendo dojo : Kendo Sample dojo link

<div id="dialog"></div>
<script>
    $("#dialog").kendoDialog({
      title: "Kendo Dialog Component",
      content: "This is your Kendo Dialog.",
      actions: [{
          text: "OK",
          action: function(e){
              
              return false;
          },
          primary: true
      },{
          text: "Cancel"
      }]
    });
</script>

0 comments