I am assigning a grouping field via code when the grid fires the FieldLayoutInitialized. When the grid loads all groups are collapsed, how can i set the first group to be expanded (or all groups)?
I found the answer in another post. I had to subscribe to the RecordInitialied event and than add the following code.
if (gbr != null)
gbr.IsExpanded = true;