This question is locked. New answers and comments are not allowed.
I have a RadDomainDataSource on my page and this is passed to various user-controls that will load data base don certain events. However in the usercontrol when I do a load the DtaaView is not changed to show the new loaded items;
Definition in my main parent page
Datasource is passed to the usercontrol as a property
Then I call a load operation
Therefore I would then expect the DataView to change to to the new loaded entities.
Thanks
Paul
Definition in my main parent page
<Grid x:Name="LayoutRoot" Background="LightGray" DataContext="{Binding ElementName=dds, Path=DataView}">Datasource is passed to the usercontrol as a property
public Telerik.Windows.Controls.RadDomainDataSource DataSource { get; set; }Then I call a load operation
AppDomainContext ctx = this.DataSource.DomainContext as AppDomainContext; ctx.Load<data_PERSON>(ctx.AdminPeople_GetEmergencyContactsQuery(), LoadBehavior.MergeIntoCurrent, true);Therefore I would then expect the DataView to change to to the new loaded entities.
Thanks
Paul