Hi ,
I need to be able to show a financial sum for unique values in a category in a regular gridcontrol next to the ggc with the source data (populated by a datatable).
For example, if I had a table like this:
Red 100
Red 500
Blue 200
Blue 120
I would need to display this in the gridcontrol:
Red 600
Blue 320
I would also need the grid control to automatically update the gridcontrol data to reflect any filters applied to the ggc.
Is there a built in method, or otherwise easy way to get this data from the ggc to the gridcontrol? If not, can I export only the filtered data from the ggc to a DataTable? If push comes to shove I could do a linq query on the exported tables, but that's probably less than ideal.
Thanks!