aspnet-devexpress-dot-web-dot-aspxgridviewsettings-f4d21106.md
Specifies the separator that the grid displays between grouped columns within merged group rows.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("; ")]
public string MergedGroupSeparator { get; set; }
<DefaultValue("; ")>
Public Property MergedGroupSeparator As String
| Type | Default | Description |
|---|---|---|
| String | "; " |
The separator.
|
You can access this nested property as listed below:
| Object Type | Path to MergedGroupSeparator |
|---|---|
| ASPxGridView |
.Settings .MergedGroupSeparator
| | GridViewProperties |
.Settings .MergedGroupSeparator
|
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