Ok, all grids work except 1 ...
Binding a grid (detail) to a list box (master) ...
lstLocaties.DisplayMember = "LocaleDesc";
lstLocaties.DataSource = m_currentEntity.LocationCode;
gridLocatieOmschrijvingen.DataSource = m_currentEntity.LocationCode;
gridLocatieOmschrijvingen.DataMember = "LocationCodeLocale";
LocationCodeLocale is a collection on a LocationCode entity ...
Setting the AllowNew property, on the default view of the LocationCode collection, to FALSE does not work here becaus "LocationCodeLocale" is a subcollection ...
How can i solve this?
Thx