Breaking Change T887544
Visible to All Users

The SummaryDisplayText event no longer fires by default when grid-like controls are in batch edit mode

Previously, grid-like controls raised the SummaryDisplayText event each time group and total summaries were recalculated.

In v19.2, we implemented automatic summary recalculation on the client side in batch edit mode. In this case, the server-side SummaryDisplayText event no longer fires as the new client-side BatchEditSummaryDisplayText event in which you can customize content and its appearance for the summaries is now available.

This change may affect your application.

To revert to the previous behavior, set the GridBatchEditSettings.EnableRealTimeSummaryRecalculation property to false.

WebForms GridView:

ASPx
<dx:ASPxGridView ID="ASPxGridView1" runat="server" ...> <SettingsEditing Mode="Batch"> <BatchEditSettings EnableRealTimeSummaryRecalculation="false" /> <SettingsEditing/> ... </dx:ASPxGridView>

MVC GridView:

Razor
@Html.DevExpress().GridView(settings => { settings.Name = "gridView"; settings.SettingsEditing.Mode = GridViewEditingMode.Batch; settings.SettingsEditing.BatchEditSettings.EnableRealTimeSummaryRecalculation = false; ... }).Bind(Model).GetHtml()

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.