I have a grid control that works fine. However, when I try to add a repository lookupedit to a grid field and run the application, the source grid column no longer contains data. Here is my code:
GridView1.Columns(
"Period").ColumnEdit = RepositoryItemLookUpEdit1
RepositoryItemLookUpEdit1.DataSource = dttAvailPd
RepositoryItemLookUpEdit1.DisplayMember =
"fldPdCd"
RepositoryItemLookUpEdit1.ValueMember =
"fldPdCd"
RepositoryItemLookUpEdit1.ThrowExceptiononInvalidLookUpEditValueType =
True
Can anyone help me with this?