How can I get the Data from the summary row. Is it possible to get the data and store it in some other editor whenever the data is changed?
Thanks.
Sorry for the lengthy time for this response. Hopefully this will still help someone.
Yes, you can get the data from the summary row. There is an event called SummaryResultChaged that will fire when the result is changed. in there, you can set the text of the editor to the e.summaryResult.Value property from within the event arguments.
If you want to grab the summaryresults from another location, you can gain access via the records collection.
XamGrid.Records.SummaryResults[0].Value
Hopefully this helps.