Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1775
Problem with GroupByOperation.MergeCells
posted

How can I get information about groups when grid.GroupBySettings.GroupByOperation == GroupByOperation.MergeCells?

Parents
No Data
Reply
  • 138253
    Verified Answer
    Offline posted

    Hello,

     

    Thank you for your post. I have been looking into it and I suggest you use the following code to iterate through all the Rows and get their merged data and groups:

    foreach (var item in xamGrid1.Rows)
    {
        item.MergeData.MergedGroups[0].Key.ToString();
    }
    

     

    Hope this helps you.

Children
No Data