Hello,
My DataGrid is initially grouped by two columns. Is it possible to have all items expanded by default. Right now they are all collapsed when the grid is loaded.
Thanks,
Jens
Hi Jens,
The easiest way to accomplish this is to wire up the InitializeRecord event and set IsExpanded to true, e.g.
{
if (gbr != null)
}
Joe, thanks for your help.