Completed
Last Updated: 07 Jul 2016 14:25 by Tim
ADMIN
Telerik Admin
Created on: 07 Oct 2013 09:27
Category: MaskedInput
Type: Bug Report
3
MaskedInput: Issues when changing the DecimalSeparator, GroupSeparator
When setting the CurrencyDecimalSeparator to "," the MaskedCurrencyInput shows ".," (decimal point is not expected).
Similar issues with MaskedNumericInput.
Setting both CurrencyDecimalSeparator and CurrencyGroupSeparator to "." also produces issues.

Possible workaround:
 public class CustomCurrency: RadMaskedCurrencyInput
    {
        protected override void SetSeparators(params Telerik.Windows.Controls.MaskedInput.Separator[] separatorsArray)
        {
            base.SetSeparators(separatorsArray);
            this.Separators.Add(new Separator(this.Culture.NumberFormat.NumberDecimalSeparator, true));
        }
    }

The fix will be available in lib for 11 July 2016.
1 comment
Tim
Posted on: 16 Sep 2015 06:07
Any update on this issue? It has been two years since I reported this problem. We are not able to use this control in Switzerland as long as this bug exists!