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
490
How to Trigger InitializeLayout in UltraGrid
posted

The user can hide or display some rows in an UltraGrid with a button. We implement that with row.Hidden. So, we don't change the UltraGrid.DataSource.

However, we also need to hide or display some columns, via column.Hidden. That logic is implemented in the event handler of the InitializeLayout.

How can we trigger that event without changing the DataSource?