Completed
Last Updated: 13 Jul 2016 14:25 by ADMIN
ADMIN
Peter
Created on: 01 Nov 2012 04:33
Category: Editors
Type: Bug Report
3
FIX. RadMaskedEditBox - is not able to edit the percentage mask when current culture is set to Italian
RadMaskedEditBox is not able to edit the value when MaskType is set to Numeric, Mask to percentage and CultureInfo NumberFormat CurrencyGroupSeparator is set to "."

Workaround:
CultureInfo ci = new CultureInfo(Thread.CurrentThread.CurrentCulture.LCID, false); //do not use user settings
 
Thread.CurrentThread.CurrentCulture = ci;
0 comments