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
1803
groupbyRow -expand or collapse group on click of check button
posted

 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

Parents
  • 385
    posted

    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.

Reply Children