Skip to main content

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

TcxCustomGridTableItemOptions.Grouping Property

Defines whether a user can group View data by the item (column).

#Declaration

Delphi
property Grouping: Boolean read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

Set this property to False to prevent a user from grouping/ungrouping data by the item (column). That is, a user cannot move the column (in a Table View) to the group panel or remove it from the group panel (although this can be accomplished programmatically). Grouping does not affect column movement within a View. See TcxCustomGridTableItemOptions.Moving to disable moving a column. Other options which can restrict grouping and moving an item are defined by the View’s OptionsCustomize property.

Note

The Grouping property enables grouping only if the View’s OptionsCustomize.ItemGrouping property is set to True.

The default value of the Grouping property is True.

See Also