I am trying to get data from the row when after the AfterRowExpanded event but the Cells object is empty. How can I get data from another cell of the row that is selected when the type is Infragistics.Win.UltraWinGrid.UltraGridGroupByRow
Hello,
I am glad to hear that you were able to find appropriate solution for you.
Please do not hesitate to contact us if you have any further questions.
I figured this out so here is the solution
Dim row As UltraGridRow
row = e.Row.GetChild(ChildRow.First)
MsgBox(row.Cells(1).Value.ToString.ToUpper)