Annoying Bug with parent-child-grandchild relationships.

  • Thread starter Thread starter George P.
  • Start date Start date
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.
 
U¿ytkownik "George P. said:
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.

Try use other name then "Parent".
Regards,
Grzegorz
 
Back
Top