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

VerticalGridBatchEditSettings.HighlightSummaryItems Property

Specifies whether the vertical grid highlights summaries when their values are recalculated.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(false)]
public bool HighlightSummaryItems { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to highlight summaries; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to HighlightSummaryItems
ASPxVerticalGridEditingSettings
.BatchEditSettings.HighlightSummaryItems
MVCxVerticalGridEditingSettings
.BatchEditSettings.HighlightSummaryItems

Remarks

The vertical grid with default settings does not highlight its summaries when their values are recalculated in real time (EnableRealTimeSummaryRecalculation).

You can do one of the following to highlight recalculated summaries:

  • Set the HighlightSummaryItems property to true to use the predefined style settings.
<dx:ASPxVerticalGrid ID="VerticalGrid" runat="server" ...>
      ...
    <SettingsEditing Mode="Batch">
        <BatchEditSettings HighlightSummaryItems="True" />
    </SettingsEditing>
</dx:ASPxVerticalGrid>
function onBatchEditSummaryDisplayText(s, e) {
    if (e.summaryFieldName === "Total") {
        var isValueChanged = e.value !== e.serverValue;
        var hasLargeValue = e.value > 1300000;
        ASPxClientUtils.ToggleClassName(e.summaryElement, "summaryItemChangedValue", isValueChanged);
        ASPxClientUtils.ToggleClassName(e.summaryElement, "summaryItemLargeValue", hasLargeValue);
    }
}

Note

The BatchEditSummaryDisplayText event has higher priority over the HighlightSummaryItems property setting.

See Also