Hello,
I have a problem with editing double type values in data grid control - when I pressed '.' nothing happens and when I pressed ',' (we use comma "," for decimal separation) applicatoin crashed with error: System.FormatException: Input string was not in a correct format.
Here is column definition:
<sfgrid:GridNumericColumn MappingName="TestValue" HeaderText="TestValue" AllowEditing="True"/>
and data model:
private double testValue;
public double TestValue
{
get => testValue;
set { testValue = value; RaisePropertyChanged("TestValue"); }
}
will be great if you could help me with this.