or
public class SelfRefTest |
{ |
public int Id { get; set; } |
public int? ParentId { get; set; } |
public string Text { get; set; } |
public string Text2 { get; set; } |
public string Text3 { get; set; } |
} |
I hope my input will help something and I'm looking forward to seeing this new control evolve.
Best regards,
Daniel
I construct the list of 3 my objects and attach it to the GridView. As a result all 3 lines shows the first item: "aa". DataBound of all 3 lines is OK but display does not work OK. Here is my code below:
eeList =
new List<MedCheckEntry>();
MedCheckEntry i1 = new MedCheckEntry();
i1.ReferenceNo =
"aa";
eeList.Add(i1);
MedCheckEntry i2 = new MedCheckEntry();
i2.ReferenceNo =
"bbb";
eeList.Add(i2);
MedCheckEntry i3 = new MedCheckEntry();
i3.ReferenceNo =
"ccc";
eeList.Add(i3);
gridView.MasterGridViewTemplate.DataSource = eeList;