This question is locked. New answers and comments are not allowed.
I have created a simple RadDataForm and bound it to a RadDomainDataSource.
Setting AutoEdit=true leads to stack overflow when navigating and updating.
After running the application, click on any navigation button. It will eventually return a stack overflow after remaining blocked for quite some time.
Setting AutoEdit=true leads to stack overflow when navigating and updating.
<Grid x:Name="LayoutRoot"> <riaControls:DomainDataSource AutoLoad="True" Height="0" Width="0" x:Name="organizationDomainDataSource2" QueryName="GetOrganizationsQuery" PageSize="20"> <riaControls:DomainDataSource.DomainContext> <my1:ExqiOfficeDomainContext /> </riaControls:DomainDataSource.DomainContext> </riaControls:DomainDataSource> <Grid> <Grid.RowDefinitions> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <telerik:RadDataForm x:Name="OrganizationsEditor" ItemsSource="{Binding ElementName=organizationDomainDataSource2, Path=Data}" AutoGenerateFields="True" AutoEdit="True" AutoCommit="True"> </telerik:RadDataForm> </Grid> </Grid> After running the application, click on any navigation button. It will eventually return a stack overflow after remaining blocked for quite some time.