hi all,
i am using the groupby method and displaying a set of data looks cool ... i wud like to add upto it .... that whenever user checks a checkbox it expands all the rows or collapses
the groupbyrow is in expand state or collapsed state wen set .how it can happen at runtime
it happens initially wen the rows are initialized . thanks in advance
You could try this
For Each gRow As UltraGridGroupByRow In MyGrid.Rows
gRow.Expanded=true
Next
Just set it to false on another button. I haven't tested this code yet but I think it should work properly.
thanks a lot Gier .. but is there any way to get this done directly for the entire grid as in initiliaze layout since i have more data to be groupd .
that could help me out evn better :)