Skip to main content

TreeListTemplates.FilterRow Property

Gets or sets a template for displaying a filter row.

Namespace: DevExpress.Web.ASPxTreeList

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

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ITemplate null

An object that implements the ITemplate interface.

Remarks

Once a template defined using the FilterRow property is created within a tree list control, it is instantiated within a container object of the TreeListFilterRowTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

To search for the server control contained within the FilterRow template, use the ASPxTreeList.FindFilterRowTemplateControl method.

Note

Online Demos Refer to the Tree List - Data Filter Row(Web Forms) online demo to review how to filter Tree List data nodes using the Filter Row.

See Also