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
295
persisting grid layout
posted

How can i persist expand collapse levels  in Ultra win grid?

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    The grid cannot do this - the rows come from the data and the data is not persisted by the grid, it's in the data source and therefore separate from the grid. So there's no way the grid could persist state information like the expanded or selected state of a row without also duplicating your entire set of data.

    If you want to code this yourself, I'd recommend storing some primary key information from each row along with the expanded state. Then you could loop through the grid rows and restore the expanded state from your stored data.

Children