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
Solved! Go to Solution.
Views
Replies
Total Likes
In the change event of the field add the following JavaScript:
xfa.event.change = xfa.event.change.replace(/[ãá]/g, "a").replace(/[ç]/g, "c");
Views
Replies
Total Likes
In the change event of the field add the following JavaScript:
xfa.event.change = xfa.event.change.replace(/[ãá]/g, "a").replace(/[ç]/g, "c");
Views
Replies
Total Likes
I really appreciate radzmar.
You always sharing your knowledge.
It works like a charm.
Thanks a lot.
Views
Replies
Total Likes
Views
Likes
Replies