TreeListSettings.HeaderFilterEditorInitialize Property
In This Article
Occurs when a header filter editor is initialized.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public ASPxTreeListHeaderFilterEditorInitializeEventHandler HeaderFilterEditorInitialize { get; set; }
#Property Value
Type | Description |
---|---|
ASPx |
A delegate method. |
#Remarks
You can use the HeaderFilterEditorInitialize event to customize the header filter editor when it is initialized.
settings.HeaderFilterEditorInitialize = (s, e) => {
if (e.EditorType = DevExpress.Web.GridHeaderFilterEditorType.Calendar){
// your code
}
};
See Also