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

ASPxGridListEditor.EnableGroupTemplate Property

Specifies whether to use an XAF group template for a group row.

Namespace: DevExpress.ExpressApp.Web.Editors.ASPx

Assembly: DevExpress.ExpressApp.Web.v18.2.dll

Declaration

public bool EnableGroupTemplate { get; set; }

Property Value

Type Description
Boolean

true, if the XAF group template is enabled; otherwise, false.

Remarks

An XAF group template displays a Property Editor representing a property by which the grid is grouped.

EnableGroupTemplate

Use this property to preclude using the XAF group template. For this purpose, set the property to false. In this instance, the group row is displayed in a default manner provided by the ASPxGridView. You can set a custom group row template using the GridViewTemplates.GroupRowContent property. To do this, implement a custom Controller for List Views that are displayed by the ASPxGridListEditor, access the ASPxGridView (see ASPxGridListEditor.Grid) and use its Templates property.

By default, this property is set to true.

See Also