Hi,
I am trying to use the CurrencyTextBox and I am getting the following error.
Value ₹ (START_DIGIT_OF_MY_AMOUNT) can not be converted
Here is my XAML
<syncfusion:CurrencyTextBox Grid.Column="1" Grid.Row="4" Margin="10,0,0,10" x:Name="Amount" Text="{Binding model.Amount, Mode=TwoWay, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" Validation.Error="Validation_Error" MinWidth="200" MaxWidth="400" Culture="en-IN" CurrencyPositivePattern="2" CurrencyGroupSeparator="," CurrencyDecimalDigits="2" CurrencyDecimalSeparator=".">
This field is bound to a model which is declared as double.
public double Amount { get; set; }
Can someone help me resolve this issue?
Thanks