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
200
I just want to group by a column
posted

 

I have a super simple need to group by a column and display the results

Title Desc
Title 1 | Some Description
Title 1 | Some Description Again
Title 2 | Some Other Description

I just want the results to display in a grid grouped by the first column

 

Title 1

Desc
Some Description
Some Description Again

 

Title 2

Desc
Some Other Description

 

what do I need to do to group this? I want it fully expanded as well...

Parents
  • 215
    posted

     

     

     

    Are you looking for something like this....

    UltraGridBand

     

    band = grd.DisplayLayout.Bands[0];

    band.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;

    band.Override.RowFilterMode =

    RowFilterMode.AllRowsInBand;

    band.ColumnFilters[

    "col1"].FilterConditions.Add(FilterComparisionOperator.Like,comparevalue);

Reply Children
No Data