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

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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