Hi, is there any way to retrive a groupe columns collection visible using the "outlook style"?
thanks
Marco
hello,
look at this kb
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=7694
in paticular
// Loop through every row in the passed in rows collection. foreach ( UltraGridRow row in rows ) { // If you are using Outlook GroupBy feature and have grouped rows by columns in the // UltraGrid, then rows collection can contain group-by rows or regular rows. So you // may need to have code to handle group-by rows as well. if ( row is UltraGridGroupByRow )//<------you can create a list that contains all of these rows
hope it helps,
best regards
E.
ps:your nickname remember my prof:)
I know that method but it's more time expensive.. I'm doing the same thing by cycling the SortedColumns collection, it is smaller than rows collection and also expose the right order of the grouped columns.
I mean that is very strange that there isn't a property or a method that returns immediatly the list of the grouped columns.. :(
thanks a lot.
marco