Back to Devexpress

DxDropDownBox.ShowDropDown() Method

blazor-devexpress-dot-blazor-dot-dxdropdownbox-64edf622.md

latest1.1 KB
Original Source

DxDropDownBox.ShowDropDown() Method

Displays the editor’s drop-down window.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public void ShowDropDown()

Remarks

Call the ShowDropDown method to open the editor’s drop-down window.

The following code snippet moves focus to the element and shows the drop-down window after the first render.

razor
<DxDropDownBox @ref="@ddbox" ... />

@code {
    DxDropDownBox ddbox;

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

Implements

ShowDropDown()

See Also

DxDropDownBox Class

DxDropDownBox Members

DevExpress.Blazor Namespace