Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

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.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Web

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