DxDateRangePicker<T>.ShowDropDown() Method
Displays the editor’s drop-down calendar.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public void ShowDropDown()
Remarks
Call the ShowDropDown
method to open the editor’s drop-down calendar. The following code adds a button that opens the editors’s drop-down calendar:
<DxDateRangePicker StartDate="@StartDate"
EndDate="@EndDate"
@ref=MyDateRangePicker />
<br/>
<DxButton Text="Show Calendar" Click=OnButtonClick />
@code {
DxDateRangePicker<DateTime> MyDateRangePicker { get; set; }
DateTime StartDate = DateTime.Today;
DateTime EndDate = DateTime.Today.AddDays(7);
void OnButtonClick() {
MyDateRangePicker.ShowDropDown();
}
}
See Also