I am populating a ListGrid via setData() and supplying a list of records. The grid includes ListGridFieldType.SUMMARY fields with custom RecordSummaryFunctions.
If the user types data into the grid the RecordSummaryFunctions operate as expected. But if I programmatically set new data in the grid via setData() the RecordSummaryFunctions are not called. Double-clicking a row to start editing triggers the calculation. How do I programmatically trigger the summary function for each record after calling setData()?
If the user types data into the grid the RecordSummaryFunctions operate as expected. But if I programmatically set new data in the grid via setData() the RecordSummaryFunctions are not called. Double-clicking a row to start editing triggers the calculation. How do I programmatically trigger the summary function for each record after calling setData()?
Comment