I’ve got a dashboard that is grouped by two columns, and there are often a lot of rows. It’s a pain to expand all the rows manually. I did find this thread: Expand ALL groups at start of Dashboard
I’m missing something, and don’t know C# well enough to make it work. Right now I’m trying to figure out what event I can use to trigger this (when dashboard is refreshed).
It isn’t working on the EpiViewNotification event. I tried to get it to fire when the grid updates, but unfortunately that isn’t working either. Not sure if this has something to do with the fact that though there are 3 different panels, they all have grids called “myGrid”. Or maybe because it’s not a custom control…
private void myGrid_AfterRowUpdate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs args)
{
// ** Place Event Handling Code Here **
MessageBox.Show("TEST");
}