New to Telerik Reporting? Download free 30-day trial

The accessibilityKeyMap(keyMap) method of the HTML5 Report Viewer

Sets the current key shortcuts map, used when the report viewer is in accessible mode.

var reportViewer = $("#reportViewer1").data("telerik_ReportViewer");
reportViewer.accessibilityKeyMap(
{
    CONFIRM_KEY: 32,
    CONTENT_AREA_KEY: 82, //R
    DOCUMENT_MAP_AREA_KEY: 77, //M
    MENU_AREA_KEY: 85, //U
    PARAMETERS_AREA_KEY: 80 //P
});

The default values for the viewer's accessibility key map can be found in the Methods Overview accessibilityKeyMap.

In this article