CC - regional seting - Decimal comma or decimal point

Hi,

CC is an excellent tool for small things. I ran into a small problem. I wanted a hole 4.8 mm. But in CC decimal number 4.8 has not supported. Only 4mm or 5mm

For Central Europe is a Comma as decimal separator.
Input box in CC has hard-set format…0.0 / zero point zero
But the validation rule is derived by regional setting …0,0 /zero comma zero

As a result, you can not enter decimal numbers

You can add to code something like: … inputControl.value.replace(",", “.”);
or merge validation with format ?

Thanks
Michal

1 Like