Skip to main content
All docs
V22.1

DxDateEdit<T>.FocusAsync() Method

Moves focus to the Date Edit component.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public ValueTask FocusAsync()

Returns

Type Description
ValueTask

A structure that stores an awaitable result of an asynchronous operation.

Remarks

Call this method to move focus to the input element of the Date Edit component as the following code snippet demonstrates. In this example the focus moves to the element after the first render.

<DxDateEdit Date="DateTime.Now" @ref="@component"></DxDateEdit>

@code {
    DxDateEdit<DateTime> component;

    protected override void OnAfterRender(bool firstRender)
    {
        base.OnAfterRender(firstRender);
        component.FocusAsync();
    }
}

Focused Element

See Also