Skip to main content
A newer version of this page is available. .
Tab

ASPxGridViewSettings.MergedGroupSeparator Property

Gets or sets the separator displayed between the grouped columns within the merged group row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
String "; "

A String value specifying the separator.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to MergedGroupSeparator
ASP.NET Controls and MVC Extensions ASPxGridView
.Settings .MergedGroupSeparator
GridViewProperties
.Settings .MergedGroupSeparator
ASP.NET Bootstrap Controls BootstrapGridView
.Settings .MergedGroupSeparator
ASP.NET MVC Extensions GridViewSettings
.Settings .MergedGroupSeparator
GridViewSettings<RowType>
.Settings .MergedGroupSeparator
MVCxGridView
.Settings .MergedGroupSeparator
MVCxGridViewProperties
.Settings .MergedGroupSeparator

Remarks

<dx:ASPxGridView ID="Grid" runat="server" DataSourceID="CustomersDataSource" Width="50%">
        <Settings MergedGroupSeparator=" | " />
        <Columns>
            <dx:GridViewDataColumn FieldName="Country" GroupIndex="0" />
            <dx:GridViewDataColumn FieldName="City" GroupIndex="1" />
            <dx:GridViewDataColumn FieldName="CompanyName" />
            <dx:GridViewDataColumn FieldName="ContactName" />
        </Columns>
        <Settings ShowGroupPanel="true" />
        <SettingsBehavior MergeGroupsMode="Always" AutoExpandAllGroups="true" />
        <GroupSummary>
            <dx:ASPxSummaryItem SummaryType="Count" FieldName="City" />
        </GroupSummary>
    </dx:ASPxGridView>

ASPxGridView-MergedGroups-Separator

See Also