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

ColumnBase.AutoFilterRowEditTemplate Property

Gets or sets the BaseEdit.EditTemplate for an Automatic Filter Row cell editor. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public ControlTemplate AutoFilterRowEditTemplate { get; set; }

Property Value

Type Description
ControlTemplate

A ControlTemplate object that represents the template that displays a custom editor.

Remarks

This property works similarly to ColumnBase.EditTemplate/BaseEdit.EditTemplate and allows you to customize the default cell editor’s edit box area. For this reason, this property cannot be used to show a simple text field in the Automatic Filter Row if the grid column’s EditSettings property is set to ButtonEditSettings or its descendant. To accomplish this task, set the grid column’s ColumnFilterMode property to DisplayText.

Note

The Name property of a control used to edit cell values must be set to PART_Editor.

See Also