Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
435
Summaries are not recalculating
posted

I'm using in a grid with the Summaries feature enabled on a column, like so (Code snipped for brevity)

features.Summaries()
.ShowSummariesButton(false)
.ShowDropDownButton(false)
.Type(OpType.Local)
.CompactRenderingMode(SummaryCompactRenderingMode.Auto)
.ColumnSettings(summaries => // snippped)

After a row is updated, the summary recalc is not occuring, even if I manually do this in BLOCKED SCRIPT

$.ig.loader(function () {
var grid = $('#mygrid');

grid.bind("iggridupdatingeditrowending", function (e, args) {
grid.igGridSummaries("calculateSummaries");
});
});