All Tags »
Master Detail »
Master Detail IEnumerable (RSS)
Sorry, but there are no more tags available to filter with.
-
I am currently evaluating the use of Xceed datagrid. I have the following Entity and am trying to display it as a master detail table flow grid with multiple levels:
public class Entity
{ public decimal Id;
public string Name;
public Entity ParentEntity;
public ...