'Is there a way to edit spesific cells in Xamarin.forms.datagrid?
I'm using Xamarin.Forms.Datagrid to display my data in grid format. I'm just wondering is there a way of editing specific cells in the datagrid?
foreach (DataGridViewRow OrderRow in dgvItemDetails.Rows)
{
if (OrderRow.Cells[1].Value.ToString() ==
DcoNumScanned.ToString() && OrderRow.Cells[2].Value.ToString()
== _ItemCode)
{
OrderRow.Cells[4].Value =
(Convert.ToDouble(OrderRow.Cells[4].Value) -
Convert.ToDouble(_uomQty));
break;
}
}
The above is just an example that I have.
Thanks for any help.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
