Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
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.
In the change event of the field add the following JavaScript:
xfa.event.change = xfa.event.change.replace(/[ãá]/g, "a").replace(/[ç]/g, "c");
View solution in original post
I really appreciate radzmar.You always sharing your knowledge.
It works like a charm.
Thanks a lot.
Views
Likes
Replies
Like