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

VerticalGridSettings.HeaderFilterEditorInitialize Property

Occurs when a header filter editor is initialized.

Namespace: DevExpress.Web.Mvc

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

Declaration

public ASPxVerticalGridHeaderFilterEditorInitializeEventHandler HeaderFilterEditorInitialize { get; set; }

Property Value

Type Description
ASPxVerticalGridHeaderFilterEditorInitializeEventHandler

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 = GridHeaderFilterEditorType.Calendar){
        // your code
    }
};
See Also