Files
NKC/REMAN/JsFunctions.cs
2021-11-25 09:56:11 +01:00

14 lines
327 B
C#

using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
namespace REMAN
{
public static class JsFunctions
{
public static async Task FocusAsync(this ElementReference elementRef, IJSRuntime jsRuntime)
{
await jsRuntime.InvokeVoidAsync("Js.focus", elementRef);
}
}
}