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;