Hi,
I have implemented the SummaryDefintion on the XamDataGrid. I just want to the summary using the simple Sum calculation.
I can implement by adding the SummaryDefinition to the FieldLayouts easy enough however the summary isn't selectable/clickable? How do i change it so that the summary can be selected (with the rest of the grid) to enable copy and paste? I have downloaded the 17.1 Samples and none of the summaries appear to be enabled for selection either.
Thanks
Can you please provide detail as code how you were able to show the total of values within summarydefinition?
Same way as shown in the examples
e.g.
<igDP:XamDataGrid.FieldLayouts> <igDP:FieldLayout Key="OrdersOrderDetails"> <!-- #BEGIN SNIPPET# --> <!-- Add a SummaryDefinition to the FieldLayout.SummaryDefinitions Collection --> <igDP:FieldLayout.SummaryDefinitions> <igDP:SummaryDefinition Key="idp_count" SourceFieldName="OrderID" Calculator="Sum" /> </igDP:FieldLayout.SummaryDefinitions> <!-- #END SNIPPET# --> </igDP:FieldLayout> </igDP:XamDataGrid.FieldLayouts>