Unplanned
Last Updated: 29 Mar 2019 12:38 by ADMIN
Sadique
Created on: 29 Mar 2019 10:47
Category: DatePicker
Type: Bug Report
0
Jaws reads "link 11" instead of the selected date "Monday, March 11, 2019"
When the DatePicker is with enabled WAI-ARIA support, Jaws reads "link 11" instead of the selected date "Monday, March 11, 2019".
1 comment
ADMIN
Rumen
Posted on: 29 Mar 2019 12:38
Hi Sandique,

Thank you for reporting this behavior!

Here is a workaround of how to go through all RadCalendar date cells and make the aria-label more descriptive:

function pageLoad(app, args) {
    $(".rcMainTable tbody td[role='gridcell']").each(function (i) {
        var cell = $(this);
        cell.find("a").first().attr("aria-label", cell[0].title);
    });
}

Best regards,
Rumen
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.