Skip to main content
A newer version of this page is available. .
Tab

GridColumnDateRangePickerSettings.MinDate Property

Specifies the minimum date allowed to be selected in the header filter’s date range picker by an end-user.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(typeof(DateTime), "")]
public DateTime MinDate { get; set; }

Property Value

Type Default Description
DateTime String.Empty

A DateTime object that specifies the minimum allowed date.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to MinDate
ASP.NET Bootstrap Controls BootstrapCardViewDataColumnHeaderFilterSettings
BootstrapGridViewDataColumnHeaderFilterSettings
ASP.NET Web Forms Controls TreeListColumnSettingsHeaderFilter
CardViewDataColumnHeaderFilterSettings
GridViewDataColumnHeaderFilterSettings
VerticalGridDataRowHeaderFilterSettings

Remarks

When a date column’s GridDataColumnHeaderFilterSettings.Mode property is set to DateRangePicker, the column header filter displays a date range picker control, allowing end-users to specify a required date range.

Use the MinDate and GridColumnDateRangePickerSettings.MaxDate properties to limit user input to dates falling within a specific range. Dates which are out of this range cannot be selected by end-users. These dates are displayed using a specific style and don’t respond to user clicks.

Note that programmatic manipulation on the date range picker’s values isn’t limited by the MinDate and GridColumnDateRangePickerSettings.MaxDate property values.

See Also