Unplanned
Last Updated: 27 Mar 2018 13:02 by ADMIN
ADMIN
Peter Milchev
Created on: 27 Mar 2018 12:56
Category: DropDownList
Type: Feature Request
0
JAWS not reading items on second focusing of DropDownList via keyboard
Workaround: Place the following script below the ScriptManager.

var $T = Telerik.Web.UI;
var $ = $ || $telerik.$
var _toggleActiveDescendantAttributes_old = $T.RadDropDownList._toggleActiveDescendantAttributes;

$T.RadDropDownList._toggleActiveDescendantAttributes = function (element, id, value) {
    if ($("#" + id + "_selected_item").length == 1) {
        $("#" + id + "_selected_item").removeAttr('id')
    }
    _toggleActiveDescendantAttributes_old.call(this, element, id, value);
}

0 comments