Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5549
InitializeRow and hierarchical grid
posted

Hi, when i have a normal grid i use initializerow to change the content of a cell for each row

 Private Sub UltraGrid1_InitializeRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeRowEventArgs) Handles UltraGrid1.InitializeRow


            Select Case CType(e.Row.Cells("Status_Cont").Value, Integer)
                Case Cont_Data.Auftrag_Status.Bestellt
                    e.Row.Cells("Status_Text").Value = "Test1"

...
...


Now i have a hierarchical grid (parent and child).
now how can i find my column in the child band?
when i go in the event initializerow iam always in the parent band.