Ticket Created
over 3 years ago

CA-108256

French comma bug

Hi, I have an app setting that is lat long entry in GCM / connect IQ. One of my users has his phone setup as French, and in GCM it appears to only allow a comma entry instead of decimal place on an app setting. and it moves the comma to a different position once saved this corrupts my float, which then includes a comma and makes lat long unusable. 

Can you please fix this so normal entry is possible ? He cannot even select decimal place.

  • Known error from months or years Disappointed

    So I decided to not wait for fix and for float settings use:

    <setting propertyKey="@Properties.PRP_FLOAT" title="@Strings.PRP_FLOAT">
            <settingConfig type="alphaNumeric" maxLength="11" required="true"/>
    </setting>

    and in code read string and convert/check to float.

    But remember that decimal point should be always dot (independent of language).