aspnet-devexpress-dot-web-21fb2a09.md
Lists editor types in the header filter.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum GridHeaderFilterEditorType
Public Enum GridHeaderFilterEditorType
| Name | Description |
|---|---|
StartDateEdit |
The date editor that specifies the start point of a date range.
|
| EndDateEdit |
The date editor that specifies the end point of a date range.
|
| Calendar |
The calendar.
|
| CheckBoxList |
The check box list.
|
| ListBox |
The list box.
|
| StartSpinEdit |
The spin editor that specifies the start point of a numeric range.
|
| EndSpinEdit |
The spin editor that specifies the end point of a numeric range.
|
| TrackBar |
The track bar.
|
The following properties accept/return GridHeaderFilterEditorType values:
Use the EditorType property to identify an editor type in the header filter.
Web Forms:
// For ASPxCardView
protected void ASPxCardView1_HeaderFilterEditorInitialize(object sender, ASPxCardViewHeaderFilterEditorInitializeEventArgs e) {
if (e.EditorType == GridHeaderFilterEditorType.Calendar){
//...
e.Editor.Enabled = false;
}
}
MVC:
settings.HeaderFilterEditorInitialize = (s, e) => {
if (e.EditorType == GridHeaderFilterEditorType.Calendar){
//...
e.Editor.Enabled = false;
}
};
See Also