Expected: ListGrid.recalculateSummaries should recompute the SummaryFunction of the totalField.
Observed: recalculateSummaries calls the record summary function but dos not call the SummaryFunction.
Will write a test-case shortly.
Is it possible for me to programmatically control when the summary calculations are performed? That is have no automatic calculation, have it be entirely invoked programmatically.
Observed: recalculateSummaries calls the record summary function but dos not call the SummaryFunction.
Will write a test-case shortly.
Code:
totalField.setSummaryFunction(getTotalSummaryFunction()); totalField.setRecordSummaryFunction(getRecordSummaryFunction());
Comment