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
4341
UltraWinGrid Group by Feature
posted

Hello ,

I am using infragistics ultrawingrid ( NetAdvantage for .NET 2008 Vol. 3 CLR 2.0) implemented in

.net Visualstudio 2008 in windows based appliaction.

Query :

If  i grouped the grid by one or more column then ,how to get  rowcount  in each group

and activerow index in a group ?.

Thanks

 

 

 

 

  • 17259
    Offline posted

    To get the grouped rows count, you can write:

    row.ChildBands[0].Rows.Count (if row is the group by row)

    Active row there is only one for the whole grid, but if you want to get an index in a group you can subtruct the first row index from the row index.