Check box export values are counted twice?

Hello

I have problems when creating a simple PDF form.

I created a list of table based in InDesign and added the boxes in the first cell in each row. When enabled, the value of exports of the box is added to the total amount field at the end of the table.

Here is the file: http://www.schwanthaler-kunstschule.de/docs/Materialienliste2013.pdf

Everything seems to work well enough until one of our clients to note, that the values of some (not all!) boxes are counted twice.

Example: In the argument 9th checkfield ("24 Aquarellfarben in Plastikkasten STK') the value of exports is 25, when checked it should have added 25 in the field of the total sum ("Den"). Instead ago added 50.

What's not here? I have absolutely no idea.

Would be great if someone could help me here.

Thank you!

Max

Maybe try to use simpler domain names, without special characters.

On Thu, 11 Sep 2013 18:06, Schwanthaler Kunstschule

Tags: Acrobat

Similar Questions

  • Export the value zero (0) check box cleared?

    I have a form (Acrobat x) with checkboxes. I want to give rise to numerical values if checked or unchecked. I have this merged with other data and count the yes / no value is another problem. I did the exported value is 1.  If the checkbox is not checked 'No' has failed.

    Is there a way to make the value for a default value for the box unchecked to 0?

    Have you created the form in Acrobat or LiveCycle Designer? If Acrobat, the value of the field when disabled is 'Off' and it cannot be changed. If LiveCycle Designer, you should be able to set the value off to 0.

  • check box assigns the value of the export of a dropdown list

    Hello

    I have a form where there are three drop-down lists (DD), each with several selections containing specific export values (products, therefore, drop 1 to lets say cars models, combo 2 has level of finish and drop 3A guaranteed). The value of exports is summarized in a "Total" box that shows the total cost for your car. This field uses a simplified notation DD1 + DD2 and DD3 field.

    I want to add in a reduction box, so when the user selects they are exempt, VAT (checkbox) it takes only 20% of the price of the model.

    So if checkbox = Yes, it calculates, DD1(-20%), DD2 and DD3.

    I am struggling to find how to apply the discount to the value of export a DD.


    Any ideas?

    You will need to use a custom calculation script, like this (you will probably need to adjust the names of fields used in the code):

    var v1 = Number(this.getField("DD1").value);
    var v2 = Number(this.getField("DD2").value);
    var v3 = Number(this.getField("DD3").value);
    var discount = this.getField("VAT exempt").value=="Off" ? 1 : 0.8;
    
    event.value = (v1*discount) + v2 + v3;
    
  • Use the drop-down menu to set the value of check boxes

    Hello everyone, I am using a drop-down list field in a form to also check or uncheck the different boxes, based on the value. I'm looking for something like the following:

    f = this.getField (event.target.name) .value;

    g = this.getField ("Checkbox1");

    h = this.getField ("Checkbox2");

    If (f is 'Value1')

    {

    g.Value = true;

    h.Value = false;

    }

    on the other

    {

    g.Value = false;

    h.Value = true;

    }

    and so on. It works the way I want. This is probably a simple syntax or a thing of terminology. Can someone advise? Thank you!

    The value of the boxes is not true or false, but one channel (either 'Off' or the value of exports).

    You can also set the like this, but:

    this.getField("Checkbox1").checkThisBox (0, true); check one

    this.getField("Checkbox2").checkThisBox (0, false); to clear a check box

    Edit: fixed the code

  • Check boxes that keep their value after a refresh

    Hello

    I'm working with checkboxes in an HTML region that will make another region appear or disappear when they are registered or not. If I understand correctly, I need to send the page so that the regions appear or disappear - but when I do the remember checkbox default value.

    My box is based on static love: STATIC2:; Y that should be checked when the value is 'Y' and unchecked when it is 'n'. I put its value by default for Y.

    I read online about how to make a checkbox to remember its value by putting a calculation on it that will define the value of the checkbox for "n" when it is null. Unfortunately, when I refresh the page, if the box is checked, then fine (as before) - but if it is unchecked, then I suddenly get two boxes - which are checked and a "n".

    Someone has an idea what I am doing wrong? It's driving me crazy trying to achieve something that I expect a little work without any effort.

    I use Apex 4.1.1.00.23

    Thank you

    Dan

    Dan CondonJones wrote:

    Is there a a way to make the default check mark without her checking those unchecked when I submit the page? Or would I need to create some process that sets the items manually when I navigate to the page?

    This is a common situation. The usual approach is to use another page to report whether it's really the first time that the page was accessed. I find it awkward and unsatisfactory. I would probably be the default checkbox value in a calculation before header with a query SQL NOT Exists condition to check if the page has previously accessed in the current session:

    select
        null
    from
        apex_workspace_activity_log
    where
        apex_session_id = :app_session
    and application_id = :app_id
    and page_id = :app_page_id
    
  • How to encode a calculation from a field value, and a check box?

    How to make a field to calculate a commission based on another field (we'll call it "Total amount" for this example) and multiply % according to a box.  I have 3 different series that are check boxes. Depending on whether one chooses a customer, "Total amount" would be multiplied by 8%, 3% or 0% to get our total commission

    Good point George.

    AdobNewbee, modify the script to be:

    Set the text field's custom calculation script

    var v = this.getField("Rate").value;
    var t = this.getField("Total_Amount").value;
    {if(v!=="OFF")}
    Event.Value = v * t/100;
    }
    on the other
    Event.Value = "";

  • the value of a check box using javascript

    Hi experts.

    I have a button that displays or hide a region (which is actually a form of data entry with a couple of boxes and text areas). I can't send the form on this button is clicked, I chose the redirect URL and URL target, I used according
      javascript: $('#AddActivity').show();               // used to show the region. works perfectly
      javascript: $x(P3_Emp_Name).value = '' ;       //  used to set value of Emp Name text box to empty for new entry
      javascript: $x(P3_Emp_FullTime).value = NULL; // used to show check box 'unchecked'.............here is the problem. dont get an unchecked check box
    
      if tried following also
    
     javascript: $x(P3_Emp_FullTime).value = 'N' ; and
     javascript: $x(P3_Emp_FullTime).value = N;
    
     but nothing works. check box retains what ever value last was selected.
    
      
     
    Please tell me how can I set the value of the checkbox to use 'unchecked' above excerpt of code.

    Concerning

    Try

    javascript: $x('P3_Emp_FullTime_0').checked = false;
    instead of
    javascript: $x(P3_Emp_FullTime).value = NULL;
    

    CITY

    Published by: Anderson city on April 22, 2011 05:05

    Published by: Anderson city on April 22, 2011 05:10

  • standard value check box problem

    Hei!

    I have a problem with a form created in lifecycle Designer 8.2 (on win7):

    The form yes/no has several boxes. I want the checkboxes to be turned off when the form is opened.

    In the object tab, I can choose the standard value. On some boxes, it works very well - on the last two is not.

    I copied and renamed the work but that did not help.

    Does anyone have a tip for me where to look for a solution?

    You can see the form here:

    https://Acrobat.com/app.html#d=SkIFUF4gRvOyFiYHEzBkdw

    Greetings from Vienna/Austria!

    Peter Strubreiter

    Hi ßeta,.

    The issue is that these two sets of boxes that both the default value is "off". Because of the overall liaison and the inverse values, it was forcing a tick in "nein".

    The other boxes are a hack, because you have disabled by default. You need to edit the XML Source to disable by default. It works, but I wouldn't recommend it.

    Here's the form returned with the two check boxes work, but I highly recommend the option buttons.

    https://Acrobat.com/#d=ifdyhi3ZUr-AUZO * TfNnhw

    As you have seen, you can set the option buttons to look square, which should be complete workflow of hand.

    You can have the script in radio buttons to allow users to deselect a choice. Take a look at this example. You need the script in the mouseDown and mouseUp the option button events. You don't need the rest of the script:

    http://www.assuredynamics.com/index.php/category/portfolio/changing-the-visual-appearance-de boxes-radio-keys.

    Hope that helps,

    Niall

    Ensure the dynamics

  • With value of check box for show/hide radio buttons?

    I have created a pdf form. I have a checkbox and radio buttons several. I put it so radio buttons are hidden until the user clicks on the checkbox above him. I also put the box reset option on mouse-to top buttons. However, radio buttons are always selectable. I want to assure you that if one of the radio options is selected, the check box to be checked as well.

    Is there a bit of javascript, I could add to the check box to hide the option buttons if its value is not equal to yes (checked)?

    You can use code similar to

    If (event.target.value == 'Yes') {}
    selected - display radio buttons
    this.getField('Radio_Button1').display = display.visible; view the radio button
    } else {}
    Show box unchecked hide radio button and reset the field
    this.getField('Radio_Button1').display = display.hidden; Hide radio button
    this.resetForm (["Radio Button1'"]); Disable the option button
    }

    But YOY will have to change the field "Radio Button1" name match your fyouor domain name to the Group of radio buttons.

  • Check box if the numeric field is equal to the value

    Newbie needs help!

    I am writing a script to check a box, but only after a numeric field adds up to "4".

    If you look at my attachment, "Student 1" has four check boxes (skills before the course, courses, etc.).  Each time that these boxes are checked/unchecked, the numeric field + or - 1 for the rawValue.  The script that I have problems with is on the box next to student 1...

    Here's the script of 'calculate' attached to this box:

    If (stu1_results.rawValue == 4) {}

    CheckBox_stu1.rawValue = true; Select the check box

    else {}

    CheckBox_stu1.rawValue is false; Clear the check box

    }

    Any advice would be great!

    Mike Schaefer

    (blinkyguy)

    There were two things wrong with your code. Logically, it was fine, but you have been mixing an entitled, declaration of the NTS and a comparison. In an if statement if you wantt o compare two values that you need two equal signs. If you want to assign a value to another, you need a single equal sign. Who was number one. The second is when you assign the value of the checkbox. The power values are 1/0 not true/false. So, you can either modify your code to assign a value of 1/0 instead of true/false or modfiy the box to the true/false as values instead of 1/0.

    The code should look like this:

    If (stu1_results.rawValue == 4) {}

    CheckBox_stu1.rawValue = 1;

    } else {}

    CheckBox_stu1.rawValue = 0;

    }

    Paul

  • How a check box value can be determined?

    I want to determine which one of the three Check boxes have been selected (in this case, "verified"). I have three boxes check, each named Box1 check and each checkbox Style check. The first Box1 check has a value to the export of Oui1. The second Box1 check has a value to the export of YES2. The third check Box1 has a value to the export of Oui3.

    You have to look at the form field to the level of the widget. See the API Acraobt to JS for the property "isBoxChecked".

    var sFiedName = "Check Box1"; domain name

    FBox var = 3; number of checkboxes for field
    oField var = this.getField (sFieldName); get the field object
    Console.Show (); Console.clear();
    Console.println ("value:" + oField.value ");
    for (i = 0; i< fboxes;="" i++)="">

    loop through each occurrence of the field (widget)
    Console.println ('widget' I 'is' + (oField.isBoxChecked (i).) (('checked': 'not verified'));
    }

  • value of the check box in the insert statement

    I'm hand-coding an insert from the insert record sb construction will do for this application. The values of several form elements are inserted into the fields in the table. The problem that occur is a checkbox value in the form. If the box is checked, all is well and the value is 'True' inserted in the appropriate database field. However, if the checkbox is not checked I get syntax error message. The reason being that, while are passed on to the fields with null null, the checkbox is not transmitted at all. This is evident when changing the method of the form to 'Get' for testing purposes. There is no reference to this field check box in the query string.

    My assumption is that this would require an If statement changing the value of the 'False' check box when the box is blocked. How I would go to this topic. With my knowledge limited to the ASP, I wrote the following, but it doesn't seem to work:

    < input name = "emailprob_mor" type = "checkbox" id = "emailprob_mor" value = "< % If Not (IsNull (Request.Form ("emailprob_cus")) then Response.Write"True") Else Response.Write ("False") End If % >" >

    When you use the boxes, it is better to separate your Request.Form statement and your insert statement:

    cbVal = '0 '.
    If (Request.Form ("emailprob_mor") <> "") then cbVal = Request.Form ("emailprob_mor")

    Then in your SQL statement:

    "& cbVal &"..."

    For your real HTML:

    "" ) then response.write(" checked='checked' ") %>>

    It is true that if the user does not check the box, then it appears as if there is no when it is submitted, that is the reason why he must be given a default value when the record is inserted.

  • How to select the values for each check box in a group of records

    Hello

    I have a requirement in form 10g. In this form there are 10 records are display each record has a checkbox is there if I click on the check box save number one and number three and make some changes in the text field (field adjustment is the number data type) and then finally, I want to see the total a total amount called field.

    In this, my question is how to select specific to a group of records records? and finally these selected records are inserted in a table.
    Because I am not able to read these records at a time.
    Is there any table to define a record group to fetch each of them individually for example Rec [1] Rec [2]... like this if yes please suggest me the steps how to do this.

    Thanks in advance
    Prasanna

    Published by: user10315107 on December 17, 2008 23:44

    OK, so you want to shoe the total amount in the form itself (I guess that somewhere under the dashboard lines?).

    You can do this easily using formulat elements:

    1 create a new item in your block where the field amount is places, set "section of the database" on the 'No', 'calculation mode' to the 'formula' and the 'formula' himself to something like:

    CASE WHEN :BLOCK.CHECKBOXITEM=CHECKVALUE THEN :BLOCK.AMOUNT+:BLOCK.ADJUSTMENT ELSE 0 END;
    

    This formula returns 0 if the checkboxitem is not checked, otherwise the sum of amount and adjustment (of course you can adjust the names of elements and the value for 'Checked')
    2. place the element in the layout, if you wish.
    3. set the property "Query all Records" to "true" for your block elements, this is necessary for the calculation to work
    3 create a control block to keep summary article in a, "Single Document" set to 'True '.
    4. place a new element in this control block, set 'Calcuation mode' to 'Summary', 'Summary block' to your block elements, 'Summary point' in newly created formula section in the block elements
    and function of synthesis for the "sum".
    5. place the element in the layout

    She's.

  • With the help of check box in number to add/subtract a value of 0.5

    Hello

    I use a formula that calculates working hours daily and then subtract a half hour for lunch if a check box is selected. The formula applies with the exception of the time 0.5 being added or subtracted. Any ideas? The box strives to subtract the Boolean value (0 or 1), I just need this value to be represented as 0.5 If you get my drift...

    Thanks in advance!

    Tender Hello,

    Formula in D2 (fill down)

    = B2−a2−if(C2,"0.5H","0h")

    Kind regards

    Ian.

  • Check boxes are displayed incorrectly &lt; input type = "checkbox", "checked" &gt; in 4.0.1 when they are fine for the same page in 3.6.17

    Check boxes are not displayed properly checked < input type = "checkbox", "checked" > in 4.0.1 when they are fine for the same page in 3.6.17

    Maybe you can try to use controlled instead of "checked".

Maybe you are looking for

  • I GOT SCAMMED

    Well, if I don't have the kind of community don't judge just help please... I woke up today and my phone was on a mod.... lost as * pls and there was a message: Dlya polucheniya parolya, napishite na e-mail: [email protected] and when I sent the

  • Driver for SD cards with 4 GB Satellite A200 - 29L

    Hi all I have a satellite A200 - 29 L and I have already installed the Flash Media Driver 2.0.0.6 and it works with SD up to 2 GB cards.When I try it with a 4 GB SDHC - Card, it does not work.Can someone tell me what to do, thank you in advance. Sepp

  • HP touchpad!

    Hi all! I have a HP Touchpad for Christmas, I feel in love immediately. I recently tried the upgrade and something went terribly wrong. to make a long story short, it seems to have gotten formatted some how and i cant get it up and running again. Not

  • I'm opening a JPEG in Adobe Photoshop, but 'Open with' dialog box does not Photoshop

    I'm opening a JPEG in Adobe Photoshop, but the 'Open with' dialog box does not Photoshop in the list of available programs. I have attempte Original title: file association

  • Presentation of the computer screen

    Information on my screen is 90 degrees to the left (in landscape format) rather than portrait format. How can I change back so that I don't have pain in my neck of reading?