number percentage field format needs comma not period
I have a format custom script.
if (event.value !=="" && !isNaN(event.value)){
event.value = util.printf("%.2f",event.value*100);
}else{
event.value = "";
}
and a custom validation script........
if (event.value !== "") {
event.value = event.value / 100 ;
}
if (event.value>1||event.value<0)
{
event.value="";
app.alert("L’entrée doit être entre 0 et 100")
}
I need my Percentage field to read 1,50 % (French)
Currently it reads 1.50 % (English)
Any help would be appreciated.
