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
100
How to retrive grouped columns collection?
posted

Hi, is there any way to retrive a groupe columns collection visible using the "outlook style"? 

thanks

Marco 

Parents
  • 2306
    posted

    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:)



Reply Children