- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Thank you very much for the quick response to this question. I used your example and tweaked it just a little to make it allow only alpha characters and then to convert to upper case. The result that worked was this.
if
(xfa.event.newText.match(/[^A-Za-z]/))
{
xfa.event.change
= "";
}
xfa.event.change
= xfa.event.change.toUpperCase();
Thank you again for your help.