I have a Ultragrid that I am trying to populate a cell with a reference to a BO other than the primary BO. The problem that when the grid loads the BOSubjectGrid.TypeCodes value does not update to relative to the record in the GridRow. However, the record does populate in the grid row.
Example
Private Sub UltraGrid1_InitializeRow(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeRowEventArgs) Handles grdVSubjects.InitializeRow
Dim BORecordType As New ORION_BO.BOGenRecTypeCodes
BORecordType.FillByPrimaryKey(BoSubjectGrid.RecTypeID)
e.Row.Cells("RecType").Value = BORecordType.Description
End Sub
Any thoughts ???
Thanks Michael
BoSubjectGrid.MoveAbsolute(e.Row.Index)
Thanks so much!