andersons205830
12-12-2017
Hello.
I would like to do a conversion of some special characters.
Example: I type "ç, ã, á" in the text field and after that happens the conversation for "c, a, a".
Does anyone know any script?
Thank you
radzmar
MVP
In the change event of the field add the following JavaScript:
xfa.event.change = xfa.event.change.replace(/[ãá]/g, "a").replace(/[ç]/g, "c");
I really appreciate radzmar.You always sharing your knowledge.
It works like a charm.
Thanks a lot.