Completed
Last Updated: 27 Aug 2019 10:43 by ADMIN
ADMIN
Dimitar
Created on: 31 Jan 2017 10:50
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Unable to focus RadSearchBox through AccessKey in IE and Edge browsers

		
1 comment
Mike
Posted on: 31 Jan 2017 18:02
As a workaround, I implemented the OnClientLoad event and ran this code:

function OnClientLoad(sender, args) {
  var elem = sender.get_element(),
      inputElem = sender.get_inputElement();
    
    inputElem.setAttribute("accesskey", elem.getAttribute("accessKey"));
    elem.removeAttribute("accesskey");
  }