Expand ALL groups at start of Dashboard

I use the method below. You pass it the UltraGrid.Rows collection and it recursively iterates all the rows to expand the group by rows.
Hope it helps!

private void ExpandRows(RowsCollection ao_rows)
{
// only expand groupby rows
if (ao_rows.IsGroupByRows)
{
foreach(UltraGridGroupByRow lo_gridRow in ao_rows.All)
{
lo_gridRow.Expanded=true;
ExpandRows(lo_gridRow.Rows);
}
}

}

--- In vantage@yahoogroups.com, "averylw" <awilliams@...> wrote:
>
> Using 9.04.506C. created this wonderful dashboard grouped by Open sales Order number. Need the Dashboard to Expand ALL when it opens up. Anyone run into this before? Seen older posts but no REAL answer. "Help me Obi-Wan Kenobi, You are my only hope"
>
Using 9.04.506C. created this wonderful dashboard grouped by Open sales Order number. Need the Dashboard to Expand ALL when it opens up. Anyone run into this before? Seen older posts but no REAL answer. "Help me Obi-Wan Kenobi, You are my only hope"