Completed
Last Updated: 30 Aug 2016 08:32 by ADMIN
ADMIN
Dimitar
Created on: 22 Jul 2016 12:52
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Unable to navigate to a URL through the first RadMenuItem in Chrome when AriaSupport is enabled
Workaround:

<script>
    var $ = $telerik.$;
    Telerik.Web.UI.RadMenuItem.prototype._doAriaFocus = function () {
        var menu = this.get_menu();
        var menuId = menu.get_id() + "_active";

        $(this.get_element()).attr("id", menuId);
        $(menu._getMainElement()).attr("aria-activedescendant", menuId);
    }
</script>
0 comments