Skip to main content
Tab

CardViewBatchEditSettings.HighlightSummaryItems Property

Specifies whether the ASPxCardView highlights summaries when their values are recalculated.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

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
ASPxCardViewEditingSettings
.BatchEditSettings .HighlightSummaryItems

Remarks

The card view 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:ASPxCardView ID="CardView" runat="server" ...>
      ...
    <SettingsEditing Mode="Batch">
        <BatchEditSettings HighlightSummaryItems="True" />
    </SettingsEditing>
</dx:ASPxCardView>
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