Ext.field.Number is allowing . (dot) as a decimal separator. Can we specific other Decimal Separator like "," ?
Explanation: Ext.field.Number field allow to put . (dot) as a decimal separator. so 12.34 is valid number
but on some culture "," (comma) is treated a decimal but 12,34 is not coming as valid number
on onBlur()
: Method e.target.value
comes as empty string ("").
even one cannot set value as 12,34 in number field
So, I thought if we could make "," (comma) as a decimal separator ?