


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
Views
Replies
Sign in to like this content
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
Sign in to like this content
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
Sign in to like this content
Total Likes
I really appreciate radzmar.
You always sharing your knowledge.
It works like a charm.
Thanks a lot.
Views
Replies
Sign in to like this content
Total Likes