ASPxGridHeaderFilterEditorInitializeEventArgs.EditorType Property
Gets the editor type.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v26.1.dll
Declaration
Property Value
| Type | Description |
|---|---|
| GridHeaderFilterEditorType | The editor type. |
Available values:
| 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. |
Remarks
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