- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
You can use regular expressions in the change:event of the textfield to limit the characters that can be typed in.
Will allow only digits and the characters A-Z and a-z
if (xfa.event.newText.match(/[^A-Za-z0-9]/))
{
xfa.event.change = "";
}