Hi,
I want to make hierachical grid with object:
Objects:
I want to have in grid first row with ParentToy and only column "Name" visible.
In hierarchy for ParentToy I want to have two child toys with columns: "name", "count".
Is this possible?
Best regards
Krzysztof
I want to make hierachical grid with object:
Class Toy
{
public Guid Id {get; set;}
public Guid ParentId {get; set;}
public string Name {get; set;}
public int Count {get; set;}
}Objects:
ParentToy (id1, null, "Castle", 1)
ChildToy1 (id2, id1, "Knight", 10)
ChildToy2 (id3, id1, "Brick", 100)I want to have in grid first row with ParentToy and only column "Name" visible.
In hierarchy for ParentToy I want to have two child toys with columns: "name", "count".
Is this possible?
Best regards
Krzysztof