CardViewBatchEditSettings.HighlightSummaryItems Property
In This Article
Specifies whether the ASPxCardView highlights summaries when their values are recalculated.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Highlight |
---|---|
ASPx |
|
#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>
- Handle the BatchEditSummaryDisplayText client-side event to specify custom visual styles.
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 Batch
See Also