Skip to main content

TreeListSettings.HeaderFilterEditorInitialize Property

Occurs when a header filter editor is initialized.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public ASPxTreeListHeaderFilterEditorInitializeEventHandler HeaderFilterEditorInitialize { get; set; }

Property Value

Type Description
ASPxTreeListHeaderFilterEditorInitializeEventHandler

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