Skip to main content
All docs
V25.1
  • DxDropDownBox.ShowDropDown() Method

    Displays the editor’s drop-down window.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    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.

    <DxDropDownBox @ref="@ddbox" ... />
    
    @code {
        DxDropDownBox ddbox;
    
        protected override void OnAfterRender(bool firstRender) {
            base.OnAfterRender(firstRender);
            ddbox.FocusAsync();
            ddbox.ShowDropDown();
        }
    }
    

    Focused DropDown Box

    Implements

    See Also