When records are grouped, Is it possible to sort each group's child records independently from one another?
So for example, group 1's child records could be sorted by field A in descending order, while group 2's child records could be sorted by field A in ascending order?
If not, is it possible to manipulate the child record collection manually, to essentially provide custom sorting logic on the child records?
Thanks for your response.
Hello Dierk,
Thank you for your post. I have been looking into it and I can say that you are not able to sort the child fieldlayouts separately, because they in fact are using one instance of fieldlayout. As for the custom sorting I can suggest you see this links from our online documentation:
http://help.infragistics.com/Help/NetAdvantage/WPF/2012.1/CLR4.0/html/InfragisticsWPF4.DataPresenter.v12.1~Infragistics.Windows.DataPresenter.FieldSettings~SortComparer.html
http://help.infragistics.com/Help/NetAdvantage/WPF/2012.1/CLR4.0/html/InfragisticsWPF4.DataPresenter.v12.1~Infragistics.Windows.DataPresenter.FieldSettings~GroupByComparer.html
http://help.infragistics.com/Help/NetAdvantage/WPF/2012.1/CLR4.0/html/InfragisticsWPF4.DataPresenter.v12.1~Infragistics.Windows.DataPresenter.FieldSettings~GroupByEvaluator.html
where you can see how to use custom sorting, grouping and group-sorting.
Hope this helps you.