Copy link to clipboard
Copied
Buenos días
En un campo de un formulario pdf me aparece un error de visualización cuando algunos usuarios rellenar el pdf desde el navegador de internet.
Los campos se visualizan con %.0d en vez del valor correcto.
Estos campos llevan la validación de formato siguiente
if (!event.value) {
event.value = "HECTOLITROS";
event.target.display = display.noPrint;
} else {
event.target.display = display.visible;
event.value = util.printf("%,0d", event.value).replace(/,/g, ".");
}
¿hay alguna forma de que no aparezca este error sin quitar la validación de formato?
Copy link to clipboard
Copied
What internet browser? Are they using the browser embedded viewer or Acrobat? If they use Acrobat, what is the Acrobat version? If they are using the browser viewer, ask your question in that forum. Browser viewers are created without the expertise od Adobe.