How do I edit a field so that it accepts numbers only?

I've seen java scripts posted and none of them have worked for me.   Perhaps it's that I'm not sure exactly how or sure where to enter the script, or which script to use.   I've also tried using the arbitrary mask feature and entered 9 in the box, but the form still accepts letters in Reader.   Help please!

What kind of form are you referring to? Are you trying to use Adobe Contribute or something else? It's hard to tell what's up from your question. Sounds like you are using Adobe Acrobat or something.

Similar Messages

  • How to validate an text field item using javascript for numbers only.

    hi,
    how to validate an text field item using javascript for numbers only.please help me on this urgent
    please mail me solun if posible on [email protected]

    Hi,
    Page HTML header
    <script>
    function onlyNum(evt) {
      // Usage: onKeyPress="return onlyNum(event)"
      evt = (evt) ? evt : window.event;
      var charCode = (evt.which) ? evt.which : evt.keyCode;
      if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        var status = 'This field accepts numbers only!';
        alert(status);
        return false;
      var status = '';
      return true;
    </script>Item HTML Form Element Attributes
    onKeyPress="return onlyNum(event)"Br,Jari

  • Quick Tip: How to create editable form fields | Acrobat X Tips & Tricks | Adobe TV

    A short tip that details how to create editable form fields using Acrobat X Std. or Pro.
    http://adobe.ly/wzXkmL

    I have created a form which will be filled out by customers and sent back to me via 'submit' button. What I am trying to figure out is when we receive the filled out form, is there any way to have it as a pdf. To clarify, when the form is filled out and sent, the receiver opens the email and attached is a non-editable pdf. This way the customers information is no longer editable.

  • How do I edit the email address that's set-up in my iPad Mail client?  It's at iOS7

    How do I edit the email address that's set-up in my iPad Mail Client Account?  It's at iOS7 and the email address was entered incorrectly; this means the email doesn't work.  There's an Edit button, which causes 3 horizontal lines to apperar at the end of the field, but does not seem to allow me to place the cursor in the field and correct the error.  Unless I can correct this I'll have delete the account and start again so if anyone's able to tell me how to edit that address that would be briliant?  Here's hoping................

    Thanks mabaeyens; it IS the address entered in the email account, on the iPad, but sadly, as explained above, once you get to the Settings > Mail, Contacts, Calendars > Account > tap in the wrong account > Email and then hit edit, the 3 horizontal lines appear at the end of the field but touching the screen within the text of the incorrect address doesn't make the cursor appear, so I can't edit!  Very frustrating obviously.  In the edit mode you can drag the field up and down the page but that's all............

  • How do I edit a PDF document that I have converted to Word?

    How do I edit a PDF document that I have converted to a Word document?

    Hi Monica,
    Please elaborate your issue. Are you facing any specific challenges in editing the word document after conversion from .pdf format.
    Regards,
    Rahul

  • How do i edit a PDF file that was sent to me in an email?

    How do i edit a PDF file that was sent to me in an email?

    Depends on the extent of the edits. You will need Acrobat in any case. If the edits or minor, you can use the text edit tool. For major edits, you need to request the original file be sent or see if you can Save As a DOC or related file type. PDFs are not really structured for editing and you are asking for a lot of grief if you want to do much. Exporting is the best way, or even better simply asking the author for the original (non-PDF type).

  • How do you edit the template image that appears at the top only in portrait mode?

    I am using a customized version of the iBooks Author template which has the space image. I have replaced the images for the book cover, chapter and section. But I noticed that when you rotate the ipad to view the entire TOC, the original space image is still there. How can I edit the template image that appears at the top of the Table of Contents only when you rotate the ipad in portrait view?

    I just tried w/that template - switched to Portrait mode...tapped once to select that image....cut - gone. Switched to Landscape...not there. Back to portrait...still gone.
    What process did you use?
    Can you repeat your issue with a fresh book?

  • How do I edit out a fence that is in front of the background???

    How do I edit out a fence that is in front of the background???

    Can you post the photo to help explain what you are talking about?

  • How can I edit an Adobe document that is marked doc docx?

    How can I edit an Adobe document that is marked doc docx?

    A file with a .doc or a .docx extension is a Word document. It is not a PDF.
    hth.
    Ben

  • I downloaded a widget from apple and was unable to open it because a window appeared telling me that the developer was unidentified. How do I change the security preferences that allow me to only install apps from the Mac App Store?

    I downloaded a widget from apple and was unable to open it because a window appeared telling me that the developer was unidentified. How do I change the security preferences that allow me to only install apps from the Mac App Store?

    go to system preferences - security and privacy - under allow applications downloaded from - click on anywhere.

  • How do I edit a word document that was converted from a PDF

    How do I convert a word document that was converted from a PDF

    To convert a Word file to PDF:
    (1) Use Acrobat XI (File - Save As Other - Microsoft Word - .... )
    (2) Use Adobe's online subscription service "PDF Pack"
    To cleanup a Word file created from the export of PDF page content -
    Open the DOCX, DOC, or RTF with MS Word.
    Perform edits, corrections, etc (cleanup).
    Be well...

  • How do I edit a PDF file that's on my iPad?

    How do you edit and change words in a PDF file on your ipad, what version do I need .please help

    If you have Acrobat for Windows, you certainly can. If you don't have it, you can try it free for 30 days. See www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • How can I edit a saved document that is within a file folder?

    How can I edit a saved document ?

    With just the free Reader? No way. It can be done with Acrobat.

  • How can i validate a Field so that it can accept only Numbers

    can any one help me to validate a filed so that it accepts only numbers if not alert user (client side JavaScript alert message)
    Iam using JSF and ADF BC as the Technologies in my application ..
    my requirement is to validate a filed so that i can accept only numbers in my jspx page..
    I had used ADF regularExpression Validator do so... but it results in exception
    java.lang.IllegalArgumentException: 'value' is not of type java.lang.String.
         at oracle.adf.view.faces.validator.ValidatorUtils.assertIsString(ValidatorUtils.java:36)
         at oracle.adf.view.faces.validator.RegExpValidator.validate(RegExpValidator.java:103)
         at oracle.adf.view.faces.component.UIXEditableValue.validateValue(UIXEditableValue.java:378)
    <af:validateRegExp pattern="[0-9]*"
    noMatchMessageDetail="Please enter Numbers only"/>
    Using validateRegExp i can only validate a field that accept String type data ..

    Hello experts,
    Am seeing the same problem while trying to validate an inputtext field that can only accept numbers. This input filed is part of a table ..Data expected here is an integer
    since that is what is gotten from my ejb/sent for update to the db.
    <af:inputText value="#{row.daysToReview}"
    required="#{bindings.AdminResultBeanresultBeanArray.attrDefs.days.mandatory}"
    columns="#{bindingsAdminResultBeanresultBeanArray.attrHints.days.displayWidth}"
    binding="#{backing_Admin.inputText2}"
    id="inputText2"
    label="#{res['admin.daysheader']}"
    autoSubmit="true">
    <af:validateRegExp pattern="[0-9]+"
    noMatchMessageDetail="Please enter a number"/>
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.AdminResultBeanresultBeanArray.formats.days}"/>
    </af:inputText>
    java.lang.IllegalArgumentException: 'value' is not of type java.lang.String.
    at oracle.adf.view.faces.validator.ValidatorUtils.assertIsString(ValidatorUtils.java:36)
    at oracle.adf.view.faces.validator.RegExpValidator.validate(RegExpValidator.java:103)
    at oracle.adf.view.faces.component.UIXEditableValue.validateValue(UIXEditableValue.java:378)
    <af:validateRegExp pattern="[0-9]*"
    noMatchMessageDetail="Please enter Numbers only"/>
    Using validateRegExp i can only validate a field that accept String type data ..
    Thanks in advance.

  • How do I edit a PDF file that was created with Acrobat 6

    I was given a PDF catalog file from one of my manufactures to use on my web  site, I was told that I need to edit the file and take out the last page which  is for my eyes only not the public, but the way they instructed me to do so has  not worked, so does anybody have an idea on how to do this?
    Also they have tried to  send me a corrected file with the last page removed but the file size is to big  to be sent through email. Any help would be great. Thank You

    dgnvarsitydad I think you are posting in the wrong thread.
    hauptinc wrote:
    Ok thank you I will try this but how will I know if there is a security set and also my mistake what I downloaded was Acrobat X Pro which is $200 from Adobe's web site. I am not very familiar with Acrobat but I will give it a try thank you again. Gary
    To see if there is security, open the document, go to File>Properties>Security. It will tell you what is allowed and what is not allowed.
    Keep in mind that Acrobat Pro is not $200 unless you have a qualifying older version to upgrade from. If not, it's more like $449.

Maybe you are looking for

  • ABAP Runtime Error while executing planning folder

    Hi experts. We have a situation where I can access our planning folders but that's not the case for one of our user. She encountered with an ABAP Runtime Error as follow: Appreciate if anyone can help me out with this. Runtime Error          RAISE_EX

  • Issue with Excel output in BI Publisher(OBIEE 11g)

    Hi All, I have designed my BIP report in RTF Layout, it contains pivot table( with one column and one row and a measure column).  when i export the report in Excel output format, i have 3 issues. i) I have fixed the pivot table row height as 13.75 pi

  • How to consolidate library in new iTunes

    Since the new iTunes with the Genius, I don't know where the option to consolidate the library is. It's really annoying, anyone know?

  • Sub-set of Universal Worklist as a Item Specific Worklist

    Hi We are developing a bespoke system which will use SAP workflow to populate the UWL with tasks and notifications.  The tasks will refer to a specific item ie a single proposal and a user will receive tasks on more than one proposal. The user will b

  • Can Someone Explain to me WHY!!!

    Please explain to me why Novell is not maintaining the imaging system to support updated drivers when they are released. This is just plain rediculous that we are left on our own to add support for new drivers when they are released. We pay for the s