ASPxGridViewSettings.MergedGroupSeparator Property
Specifies the separator that the grid displays between grouped columns within merged group rows.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | "; " | The separator. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to MergedGroupSeparator |
---|---|
ASPxGridView |
|
GridViewProperties |
|
Remarks
Specify the MergedGroupSeparator
property to customize the separator that the grid displays between grouped columns within merged group rows.
<dx:ASPxGridView ID="Grid" runat="server" AutoGenerateColumns="false">
<Columns>
<dx:GridViewDataColumn FieldName="Country" GroupIndex="0" />
<dx:GridViewDataColumn FieldName="City" GroupIndex="1" />
<%--...--%>
</Columns>
<Settings ShowGroupPanel="true" MergedGroupSeparator=" | "/>
<SettingsBehavior MergeGroupsMode="Always" AutoExpandAllGroups="true" />
<GroupSummary>
<dx:ASPxSummaryItem SummaryType="Count" FieldName="City" />
</GroupSummary>
</dx:ASPxGridView>
See Also