Bogus web form field entry

In my secure zone areas that have web forms I find Random letters in web form fields from persons who are not prviding required info in fields.
Is there a way to validate web form entry in certain fields? 

Hi Will,
When you form a web form in BC when you tick that it is required that is added to the javascript that is at the bottom of the form. That only stops if it is empty or not.
To have validation on fields that is more advanced you need to look to use something like this:
http://jqueryvalidation.org/

Similar Messages

  • Save As with the filename from a form field entry

    Hi,
    I have an Acrobat fillable form. It is a questionaire that will be filled out by visitors using my laptop then printed. It is important that this form also be saved so I can later merge the data to a spreadsheet.
    My first thought was to create a button labeled Print that would first do a Save As then Print. But I'm concerned the visitor may mislabel or even escape out of the Save As dialog box.
    Is there java script code someone could help me with that would perform the Save As using the data imputted into one of the form fields as the filename. So when the Print button was clicked the form would be saved (behind the scene) and then printed.
    Thanks
    Dennis

    Issue solved. I should've used Display as text (Does not save state)
    THANK YOU JOEL!
    Anca

  • Web form fields not staying in order

    Does anyone know why the fields in my forms keep re-arranging themselves. For example I will move "Field 2" below "Field 6" and everything looks like it works but when I insert the form on a page the fields are not in the order I set. Any advice?

    Hi,
    That is a bit strange do you have an example form on your site that we can look into further? 
    Please also provide the exact steps that you are doing so we can closely replicate to see where the issue could be coming from. 
    Cheers!
    -Sidney

  • Why would my PDF Form print out the tab order on top of my form fields?

    When this user prints out the filled out PDF form we created, it prints the tab order as a little square numbered box right on top of the form field entry.  The tab order prints over all types of fields, text entry fields, check box fields, etc.
    I am not sure if this issue is related to someone using a non-Adobe PDF reader, or an issue with their printer?   Unfortunately, we cannot duplicate this issue ourselves and are hesitant to interrogate our client futher on the matter. 
    Has anybody else ever seen this type of print out from a PDF form issue?

    Thanks for your reply!  Based on your suggestion I did a little experimenting.
    This is a form saved to Enable User Rights so PDF viewers can fill out and email or save the form.   After seeing your question, I opened the form for editing (actually saving a copy first that was not restricted, and editing the copy).  I then toggled the Tab Numbers on via Tools > under the Forms header I clicked Edit > Other Tasks > Edit Fields > Show Tab Numbers.  After revealing the tab numbers I then tried to save the form as a Reader Extended PDF, but the Enable Additional Features option was grayed out.  Even if I wanted to, I could not save the form with the tab numbers revealed.
    The form itself was also received by our company electronically and when viewed does not show the tab number order and when we print it, it prints as expected (no tab order numbers).
    We are suspecting that this may be an issue either with the end users printer? Or possibly viewing and printing via an alternate viewer like Foxit?
    Anybody run across this odd behavior?

  • Formula to divide field entry by a number

    I have two form fields. One is set as a dollar amount and needs to be calculated by dividing the other form field entry by a specific number. I've tried multiple scripts that I found by searching all over the internet, but nothing works.
    Does somebody know what the script should be, AND where can I go to learn about scripting?

    Did you change the field names to match your field names?
    JavaScript does not generate a number result when dividing by zero. It creates either an 'NaN' string value or a string value for the number 'Infinity' or '-Infinity'. So unless you are placing your result in field with a format of "None", you need to control your code to avoid dividing by zero.
    Since there is a possibility of dividing by zero, and simplified field notation can not handle conditional processing, the 'fi' statement, you need to write a custom calculation script.
    For the field to hold the result of the calculation:
    // establish variables for the field names for the dividend and divisor.
    var sDividend = 'My Dividend Field Name';
    var sDivisor = 'My Divisor Field Name';
    // get the value of the divisor field
    var nDivisor = this.getField(sDivisor).value;
    // get the value of the dividend field
    var nDividend = this.getField('sDividend').vlalue;
    // do not change the code below this line
    // clear the result field value
    event.value = '';
    // see if we have a non-zero divisor
    if (nDivisor != 0) {
       // we can now divide
       event.value = nDividend / nDivisor;
    } // end division calculation
    The above assumes your are dividing the values of 2 fields.
    There are tutorials at the Acrobat Users Community and Planet PDF. Ted Padova has written a number of books about Acrobat and Acrobat Forms.

  • Where are my Web Form entries stored in the webBasics plan?

    Where are my Web Form entries stored in the webBasics plan? Currently—in my trial site—I can access Web Form responses through a Custom Report. Will this option be available to me in the webBasics plan?
    My hope is to use the webBasics plan with a Web Form (and a few custom fields) and have the reponses stored for me in the Businsess Catalyst interface.

    You do not get the CRM element of BC with the webbasic plan. With BC storing the forms it creates "cases" Which are stored against the "Customer" in the "CRM". You dont have access ot that with the webbasic plan.

  • Is there a way to create entry form/fields in Numbers.

    Can anyone let me know if there's a way to create an entry form/field in Numbers. The idea would be to have already created a list of contacts, then at an event on an iPad, people can check off if that person is there and also enter new contact info. Thanks in advance.

    Isnt this just a table? A list of people, with a check box field in the second column, followed by a few columns for contact info to be entered in?
    Jason

  • Value field in web form

    Hi
    I want to put a default value in a web form feild but when a user clicks the form field the value disappears to allow them to input their text.
    How is this done? I tried adding  value="text" but this make the value permanent and has to be deleted by the user before they can fill in the field.
    Anyone got any ideas?
    Thanks
    Ken

    I used this from StackOverflow...
    <html>
    <head>
    <title>
    </title>
    <script lang='javascript'>
    function makeBlank(obj,defMsg){
        if(obj.value==defMsg){
            obj.value="";
    function fillDefValue(obj,defMsg){
        if(obj.value==""){
            obj.value=defMsg;
    </script>
    </head>
    <body>
    <input style="width:190px" onblur="fillDefValue(this,'User Name')" onfocus="makeBlank(this,'User Name')" value="User Name" name="fromname" id="fromname" type="text">
    </body>
    </html>
    Works nicely :-)

  • I am creating a web form from a template and I need to change a field. It is just a text field at the moment but I need to change it to a field that the customer can fill in. How do I do this?

    I am creating a web form from a template and I need to change a field. It is just a text field at the moment but I need to change it to a field that the customer can fill in. How do I do this?

    See this thread:
    http://answers.acrobatusers.com/Is-add-instructional-text-text-field-disappear-clicked-q19 5078.aspx

  • Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Form fields in LiveCycle. I want to allow users to add URLs to a form so that they can be clicked and opened on the web by form reviewers (users). what is the best way to achieve this?

    Once the user has entered the URL they want to add to the form. You can use the loadXML function to implement some special text in a label...
    var linkValue = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><exData contentType=\"text/html\" xmlns=\"http://www.xfa.org/schema/xfa-template/2.8/\"><body xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:xfa=\"http://www.xfa.org/schema/xfa-data/1.0/\" xfa:APIVersion=\"Acroform:2.7.0.0\" xfa:spec=\"2.1\"><p style=\"font-weight:bold;text-decoration:none;letter-spacing:0in\">The new link the user have entered is:<a href=\"" + textfield.rawValue + "\">textfield.rawValue</a></p></body></exData>";
      this.resolveNode("lblURL").value.exData.loadXML(linkValue, 1, 1);

  • Is it possible to have copy to clipboard take entries in text boxes on a fillable form as well as the form fields Windows?

    Is it possible to have copy to clipboard take entries in text boxes on a fillable form as well as the form fields in Adobe Reader Windows? When I create the forms is there some javascript or possibly a setting that would allow the end user to copy to clipboard the form fields and their entered text. Or another option that would work is to have only the entries in the text boxes copy to clipboard. Is that even possible?

    Copying fields is not possible in Reader.

  • No editable form fields in ABAP Web Dynpro

    Hi,
    I created a form with layout type ZCI. The interface type is "ABAP Dictionary-Based Interface".
    This form I embedded in a abap web dynpro component.
    In the ABAP WD interactive form element I marked the enabled property.
    Unfortunately the displayed form fields are not editable.
    When I use a interface of type "XML-Schema-Based Interface" the fields are editable.
    Is this a bug or is something missing?
    I am using Live Cycle Designer 8.1 and SAP_BASIS 7.0, EHP 2, SP07
    Thank you and best regards,
    Eddy
    Edited by: Edgar Meyer on Oct 1, 2011 7:06 PM

    Hi Eddy,
    In your Interface, you probably have to pass the "Fillable" flag in your importing /1BCDWB/DOCPARAMS structure.
    I've developed many forms over the past few years and have learned that when using web dynpro, it's almsot exclusiely easier to use the XML-based schema than DDIC.
    The only time I'm using DDIC instead of XML when in WDA, is because I'm having to pass in rich text formatted objects through a Text Node.

  • Acrobat Flattening Form Fields and Optimizing for Web

    I'm trying to optimize a PDF for the web and flatten all the form fields. I also want to remove the purple dialogue box at the top when optimizing on the web. Has anyone else experienced this problem? I've toiled around with it for some time and can't seem to figure it out. In the older version, I would simply save it as a file optimized for the web, which would then flatten all the form fields and remove the purple box at the top. Any help would be appreciated.

    Your question really belongs in one of the Acrobat forums. I flatten form fields (use the pre-flight tool) and then save for the web.

  • Web Forms Number Field - Not processing decimals!

    We have created a monster web form on a clients site. As it is, we have had to setup an API to deal with the data after its been generated by BC and modify it before sending it on to the client. The client saw no reason for fields that did not have anything entered against them to be sent through in the workflow notification - and I agreed. 
    Now after all these other problems have been resolved, I discover that all my  "number" fields cannot process a decimal place, and they round up or down. BC have suggested I need to recreate the form and just make them all 'text strings'.
    Not good enough. Its an EPIC form with over 100 fields in it. We, in good faith, read the instructions that can be found here: http://kb.worldsecuresystems.com/478/bc_478.html?bc-partner
    that state "Number - a text box that must have a number entered into it". No note about NOT using decimals!
    The confusing thing is, it lets you enter the decimal from the front end, even displays the web form confirmation page correctly with decimals. But when it creates a case in BC, it rounds the numbers. So its only at this late testing stage that we have discovered the issue
    Does anyone have any ideas about faster ways of re-creating this entire form ?
    I did submit a support ticket, and was told to switch to the old UI and then just change the type of the fields. But when we try to change a form field from 'number' to 'string' it brings up the message "WARNING: Field updated successfully but type not changed as field has associated values.". Then they said to:
    Copy that specific webform change the type fields of the form and then remove the old webform and re-name this one copy with the first webform name. The copy option is available under the link I have provided to you.
    However this still means we need to change *all* the fields and then get every field' s ID and insert it into the javascript. Very very time consuming
    So A) everyone else be warned and B) Does anyone have a shortcut?
    Thanks!!

    Thanks for confirming my fears
    Its a shame that since its such a long standing thing, it hasnt actually been added to the knowledgebase... which when we started this project (long before this schmozzle of a new system was introduced) was the most relevant place to look.  When I start something, I tend to look in the KB.... not think "oh perhaps I should check the FAQ's in case there is a long standing issue that isnt contained in the KB".

  • Can a Password be set to apply after a Field Entry on the PDF form?

    Can a Password be set to apply after a Field Entry occurs on the PDF form?  Thus requiring a Password after the PDF document is closed with a Field Entry, and requiring the Password upon re-opening the PDF document

    It might help if you provided more information about what you're trying to accomplish. Do you want the field value to somehow be encrypted, or do you want the field to be locked to prevent further changes to it?

Maybe you are looking for

  • SAPSQL_ARRAY_INSERT_DUPREC Runtime error

    I am getting following error what could be the error please suggest me. Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC Exception              CX_SY_OPEN_SQL_DB Date and Time          18.08.2010 20:39:30 Short text The ABAP/4 Open SQL array insert

  • I'm signed in but can't launch acrobat...keeps saying try again... help

    I'm signed in but can't launch acrobat...keeps saying try again... help

  • Highlight document

    I want to highlight certain parts of a PDF file and save it. I have clicked on the highlight icon and it won't allow me to highlight the document. I have even saved it and then tried to highlight it. I have noticed there are some PDF documents that I

  • Will the features of WebHelp and WebHelp Pro layouts ever be combined?

    Why are they separate? I like the enhanced features of WebHelp Pro, but I lose other new and GREAT features of WebHelp. I use the WebHelp Pro layout for the customization features like: Conditional Build Expressions Content selection (TOC, Index, Glo

  • Relinking/Changing Media

    Quick question on re-linking or changing media in Color. I've got an FCP sequence that I've "Sent to Color". It has opened fine, and I can color the sequence as normal. Now, I've taken one of the shots into After Effects and fixed some issues, and sa