Posted 29 December 2019, 9:36 pm EST
I am trying to bind child collection to FlexGrid e.g.
… public class MyParentClass { public string Id {get;set;} public List Children {get;} }
public class MyChildClass { public string Name {get;set;} } … for (int i = 0; i < 3; i++) { int j = i; <GridColumn Binding=@(“Children[”+j+“].Name”) Header=@(“Name” + j) /> } …
But I cannot see anything except data in the first column Is this limitation of control or I made a mistake? Thank you