Skip to main content
Tab

ASPxGridViewSettings.MergedGroupSeparator Property

Specifies the separator that the grid displays between grouped columns within merged group rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("; ")]
public string MergedGroupSeparator { get; set; }

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
.Settings .MergedGroupSeparator
GridViewProperties
.Settings .MergedGroupSeparator

Remarks

Specify the MergedGroupSeparator property to customize the separator that the grid displays between grouped columns within merged group rows.

ASPxGridView-MergedGroups-Separator

<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