Hi Paul,
Thank you for your patience.
Based on the provided information, we have checked the reported issue with DataGrid in Xamarin.Forms, in your Model Class file (TestInfoCS) you have defined CLR property TestId wrongly. You have set TestID instead of testID. Please refer the following code example for the same.
You have defined as following |
Define CLR property like this |
public int TestID
{
get
{
return testId;
}
set
{
this.TestID = value;
RaisePropertyChanged("TestID");
}
} |
public int TestID
{
get
{
return testId;
}
set
{
this.testID = value;
RaisePropertyChanged("TestID");
}
} |
We also attached the sample for your reference,
Please let us know, if you need any further assistance on this.
Regards,
Subburaj Pandian V