G
George P.
Tables: Parent, Child, Toys
Relationships: ParentToChildRel, ChildToToysRel.
dataGridParent.Datamember="Parent";
dataGridChild.Datamember="Parent.ParentToChildRel";
dataGridToys.Datamember="Parent.ParentToChild.ChildToToysRel";
all grids pointing to same datasource.
the flaw is that when a move to a parent, whose child has no toys but the
previous one had, datagridToys still shows the toys of the previous one
instead of none.
I think this is a bug, because it should display none.
Relationships: ParentToChildRel, ChildToToysRel.
dataGridParent.Datamember="Parent";
dataGridChild.Datamember="Parent.ParentToChildRel";
dataGridToys.Datamember="Parent.ParentToChild.ChildToToysRel";
all grids pointing to same datasource.
the flaw is that when a move to a parent, whose child has no toys but the
previous one had, datagridToys still shows the toys of the previous one
instead of none.
I think this is a bug, because it should display none.