Hi,
We are evaluating the SfDataGrid with Xamarin Forms.
Xamarin Forms Version: 2.5.1.444934
SfDataGrid Version: 16.1.0.37
The item source is an MvxObservableCollection.
private decimal _orderQuantity = 0;
[JsonIgnore]
public decimal OrderQuantity
{
get { return _orderQuantity; }
set
{
_orderQuantity = value;
RaisePropertyChanged("OrderQuantity");
}
}
The grid cell cannot be edited when used with Numeric Text Column and throws an exception. On the other hand GridTextColumn works fine. We are able to verify data is updated in the underlying object.
Please find attached an image of grid when tried to edit with numeric column.
Attachment:
DataGrid_Error_64f4525a.zip