Hi, I am trying to restrict the character at position 0 from numeric.
That is, a NAME field is not to start with a numeric charater but can
have numeric after position0. I have written this code below in the
change event itself of the field, but it doesn seem to work. Could you
please suggest as to where i am going wrong? Or any other alternative to
restrict numeric characters at position0? Below is the
code:xfa.this.rawValue.charAt(0).event.change =
xfa.event.change.replace(/[0-9]/g, "");Thanks...