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

GridViewTemplates.FilterCell Property

Specifies a template to display a filter row cell.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public virtual ITemplate FilterCell { get; set; }

Property Value

Type Default Description
ITemplate null

An object that implements the ITemplate interface.

Remarks

When you specify the FilterCell property, the control creates a template within a container object of the GridViewFilterCellTemplateContainer type.

Use the FindFilterCellTemplateControl(GridViewColumn, String) method to search for a server control within the filter cell template.

At the column level, specify the GridViewColumn.FilterTemplate property to create a template for the filter row cell in this column.

Refer to the Create Templates topic for information on how to create templates for the Grid View control’s elements.

See Also