GridRecordNavigationControl and Master Detail GridDataBoundGrid

I have a form with two GridDataBoundGrids each bound to the same dataset with a relation. Everything works fine until I place the master grid onto the GridRecordNavigationControl. Once I do, the detail grid is no longer displaying the related records. Is there some additional code that needs to be written to handle this?

1 Reply

AD Administrator Syncfusion Team December 29, 2004 10:40 PM UTC

You need to make sure both grid''s are using the same binding context. this.grid1.BindingContext = this.BindingContext; this.grid2.BindingContext = this.BindingContext;

Loader.
Up arrow icon