Unplanned
Last Updated: 13 Jul 2020 08:37 by ADMIN
Thomas
Created on: 08 Jul 2020 07:11
Category: Button
Type: Feature Request
6
Expose accesskey Parameter in TelerikButton

It lets the browser "click" the button without requiring initial focus first.

The following can be a workaround for the time being:

 

<TelerikButton OnClick="@OnSave" Primary="true">
    Save<span accesskey="S"></span>
</TelerikButton>

@code{
    async Task OnSave()
    {
        Console.WriteLine("saved");
    }
}

 

0 comments