Skip to main content
All docs
V25.1
  • DxTimeEdit<T>.ShowDropDown() Method

    Displays the editor’s drop-down time picker.

    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 time picker.

    <DxTimeEdit Time=DateTime.Now.TimeOfDay
                @ref=MyTimeEdit>
    </DxTimeEdit>
    
    <DxButton Text="Show Time Picker" Click=OnButtonClick />
    
    @code {
        DxTimeEdit<TimeSpan> MyTimeEdit { get; set; }
    
        void OnButtonClick() {
            MyTimeEdit.ShowDropDown();
        }
    }
    
    See Also