Dynamic radio button fields do not display again after registered form

Hello

I have a group of questions of radio button at the breast of a dynamic form that display additional questions based on the answer.

So to the question "is there a basement?" If the user indicates Yes, there is a basement, additional questions are displayed in order to collect more information on the basement. If the user says no, while these questions do not appear.

Everything works beautifully in the form. However, when the form is saved and then re-opened, other issues do not appear in the form. So, the structure goes to this:

image1.jpg

To do this:

image2.jpg

Users must toggle buttons radio to reappear these issues... and when they reappear, they maintained that respond to the user indicated before the Save.

I don't know why this happens... does anyone have advice?

Thank you

Theresa

Can you make sure you have state changes based on an automatic script enabled for your form. If you go to file-> properties of form-> by default and see what the script option button is selected. If you have manually, you need to handle all state change yourself and you are not as likely at the present time. Try him affecting automatically and see if it works on the opening of the saved pdf file. I did a quick in Designer 8.2 and it seemed to match your question.

Tags: Adobe LiveCycle

Similar Questions

  • How to make the non selectable radio button field

    I want to UN selectable radio button field average user will be not be able to select. How can I achieve this. Please help me for this.

    You could remove them from the screen, or do unfocusable or make unmodifiable.  The choice will depend on what you're trying to reach.

  • APEX_ITEM - Radio button group does not work

    Hi all

    I have a classic report in my application

    Report query:

    SELECT APEX_ITEM.DISPLAY_AND_SAVE(8,B.PRIMARY_DLR_NUM||'-'||B.PRIMARY_DLR_NAME)||
    APEX_ITEM.HIDDEN(9,A.ARM_EMPLID)||
    APEX_ITEM.HIDDEN(10,A.AE_EMPLID)||APEX_ITEM.HIDDEN(11,B.PRIMARY_DLR_NUM)||
    APEX_ITEM.HIDDEN(13,B.PRIMARY_DLR_NAME)||
    APEX_ITEM.HIDDEN(12,B.DLR_TYPE_CD) "Dealer",
    C.DLR_STATUS "DLR_OPT_IN",
    C.ARM_STATUS "ARM_OPT_IN",
    C.AE_STATUS "AE_OPT_IN",
    C.ALT_ARM_MAIL_ID "ARM_EMAIL_ALT",
    C.ALT_AE_MAIL_ID "AE_EMAIL_ALT",
    C.ARM_STATUS "STATUS",
    C.APPROVED_DATE "APPVR_DATE" 
    FROM EMPLOYEE_DEALER_RELATION A, DEALER B , EV_DR_ARM_AE_OVERRIDE C
    WHERE  ((A.ARM_EMPLID= :P1_ARM
    AND A.AE_EMPLID = :P1_AE ) OR (B.DLR_TYPE_CD = :P1_DEALER_TYPE_CODE))
    AND A.PRIMARY_DLR_NUM = B.PRIMARY_DLR_NUM
    AND A.PRIMARY_DLR_NUM = C.DEALER_ID 
    AND A.ARM_EMPLID = C.ARM_ID 
    AND A.AE_EMPLID = C.AE_ID 
    

    C.DLR_STATUS "DLR_OPT_IN"

    C.ARM_STATUS "ARM_OPT_IN"

    C.AE_STATUS "AE_OPT_IN"

    These three columns are displayed in the Radio button group.

    I have a process in the page that will insert a new record and update the existing record.

    In the report, the user can change any column and press the submit call said above.

    The process code:

    DECLARE
    V_EXISTS NUMBER:=0;
    V_ERRMSG VARCHAR2(4000);
    V_ERRCODE VARCHAR2(100);
    BEGIN
    FOR I in 1..APEX_APPLICATION.G_F01.COUNT 
    LOOP
     BEGIN
          BEGIN
          SELECT 1 INTO V_EXISTS FROM EV_DR_ARM_AE_OVERRIDE
          WHERE ARM_ID = APEX_APPLICATION.G_F09(I)
           AND  AE_ID  = APEX_APPLICATION.G_F10(I)
           AND  DEALER_ID = APEX_APPLICATION.G_F11(I);
          EXCEPTION WHEN OTHERS THEN
          V_EXISTS:=0;
          END;
    
    
    IF V_EXISTS = 0 THEN
          INSERT INTO EV_DR_ARM_AE_OVERRIDE(ARM_ID,AE_ID,DEALER_ID,DEALER_NAME,DLR_STATUS,ARM_STATUS,
          AE_STATUS,ALT_ARM_MAIL_ID,ALT_AE_MAIL_ID,UPDATED_BY,UPDATED_DATE,APPROVAL_STATUS,APPROVED_BY,
          APPROVED_DATE,DEALER_TYPE_CODE) VALUES(apex_application.G_f09(I),apex_application.G_f10(I),apex_application.G_f11(I),
          apex_application.G_f13(I),
          APEX_APPLICATION.G_F01(I),APEX_APPLICATION.G_F02(I),APEX_APPLICATION.G_F03(I),      APEX_APPLICATION.G_F04(I),APEX_APPLICATION.G_F05(I),:APP_USER,SYSDATE,APEX_APPLICATION.G_F06(I),
          :APP_USER,APEX_APPLICATION.G_F07(I),apex_application.G_f12(I));
          COMMIT;
    ELSE
         UPDATE EV_DR_ARM_AE_OVERRIDE
         SET DLR_STATUS = APEX_APPLICATION.G_F02(I),
             ARM_STATUS = APEX_APPLICATION.G_F03(I),
             AE_STATUS  = APEX_APPLICATION.G_F03(I),
             ALT_ARM_MAIL_ID = APEX_APPLICATION.G_F04(I),
             ALT_AE_MAIL_ID =  APEX_APPLICATION.G_F05(I),
             UPDATED_BY     = :APP_USER,
             UPDATED_DATE   = SYSDATE,
             APPROVAL_STATUS = APEX_APPLICATION.G_F06(I),
             APPROVED_BY   = :APP_USER
          WHERE ARM_ID = APEX_APPLICATION.G_F09(I)
           AND  AE_ID  = APEX_APPLICATION.G_F10(I)
           AND  DEALER_ID = APEX_APPLICATION.G_F11(I);
      COMMIT;
    END IF;
    EXCEPTION WHEN OTHERS THEN
    V_ERRMSG:=SQLERRM;
    V_ERRCODE:=SQLCODE;
    INSERT INTO EVANTAGE_ERROR_LOG VALUES(APEX_APPLICATION.G_F09(I)||'-'||APEX_APPLICATION.G_F10(I)
    ||'-'||APEX_APPLICATION.G_F11(I),V_ERRMSG,V_ERRCODE,:APP_USER,SYSDATE);
    COMMIT;
    END;
    END LOOP;
    EXCEPTION WHEN OTHERS THEN
    V_ERRMSG:=SQLERRM;
    V_ERRCODE:=SQLCODE;
    INSERT INTO EVANTAGE_ERROR_LOG VALUES(NULL,V_ERRMSG,V_ERRCODE,:APP_USER,SYSDATE);
    COMMIT;
    END;
    

    Now my problem is when I select radio group value and press on submit I get my process performing perfectly 404 page not found, its not even call my process, without radio button (if am not choose any NULL - value).

    Could you get it someone please let me know how I can solve or what I missed here?

    Thanks in advance.

    See you soon,.

    San.

    Groups of radio in the reports are evil - this is inherent in the HTML format, like checkboxes in tabular form.

    Vincent Deelen: Using radio buttons in a report of the APEX

    My suggestion is to try a different design of the user interface, or generate buttons to replicate radio groups.

  • Need help with javascript used to check the data in the mandatory radio button fields

    required_fields

    I get a syntax error (SyntaxError: missing: after the id property 17; at line 18).  I am trying to run a script to verify data in all the fields required radio button before letting the user to submit the form (or save).  Here is the code I use:

    var AllRequiredFieldsSet = true;

    for (var i = 0; I < this.numFields;i++)//loop through all form fields)

    {

    var fldName = this.getNthFieldName;

    var currentFld = this.getField (fldName);

    if(currentFld.type=="radio")

    {

    All the radios that are needed to see if the user filled their

    if(currentFld.Value=="OFF")

    AllRequiredFieldsSet = false; one of the option boxes has not been selected, this form cannot be sent

    }

    }

    If (AllRequiredFieldsSet is false)

    App.Alert ("all the required areas have not been met");

    on the other

    this.submitForm ({cURL"mailto:EMAILADDRESS@gmail.com", cSubmitAs: "PDF"});

    Miss me not all media... Any ideas on what I'm missing?

    Thank you! Judy

    These two lines should fix things:

    var fldName = this.getNthFieldName (i);

    ...

    if(currentFld.type=="RadioButton")

  • Form fields is not displayed correctly

    Seen in Reader APP on my iPad some forms, created with the following desktop Adobe, are not displayed as expected. I've specified that the fields must NOT be highlighted but they ARE in the drive of the APP. Is there any solution for this?

    Hello

    Please see your other post: entry form fields is not displayed correctly in APP

    Thank you.

  • Radio button outline will not go away

    Hello community,

    I've created my first form-filling using my new upgrade to Acrobat X (10.1.2) for Mac and ran into the following issue:

    Creating radio buttons, I can not turn off lines square of each button.  In properties, the appearance for the radio button, I tried the following:

    -Set the border to none color

    -Set the white border color

    I can still see the outline on the screen.  The outline also prints.

    Can someone tell me how to disable the contours in my radio buttons?

    Thank you

    Eric

    Set the border color to something else than transparent (none) and then set the solid line Style. Now set the border to transparent color.

  • Login name of user and password fields are not displayed

    Hello
    I use EBS 11i. I just rebooted the server (it is a single node installation), I try to log into the login page, but the login fields are not displayed.
    I restarted services BSE, but always the same problem.
    Anyone has any idea what is causing this problem and how to solve?

    Thank you.

    Hello

    What is the version of database and operating system?

    Changes have been made recently?

    You will find all errors in the database logs and apache files?

    Run AutoConfig and make you what it ends successfully, bounce services and then check.

    Thank you
    Hussein

  • How can I prevent the text fields and drop downs changed after the form has been signed using a digital certificate? Thank you.

    Hi all

    How can I prevent the text fields and drop downs changed after the form has been signed using a digital certificate? Thank you.

    There is also a checkbox on the dialog box 'Sign' to lock document after signing.

  • Text in the radio button field triggers?

    I'm sure it is a simple and I just have a moment on Monday, but I can't seem to find it by searching on the forum...

    I have created a pdf form and I want an option button to automatically check when someone types the text in a certain area - how can I do this?

    I would be put in place so that none of the fields in each section can be filled-in unless one of the radio buttons is selected. If space fields are displayed if this option button is selected and the same thing with the hull of the Pre-Built program fields. You can do it in show/hide fields, and you would also want to reset the fields when they are shown/hidden. Coding can be greatly simplified if you use a field hierarchical naming system for the two groups. For example, fso.width, fso.depth, fso.area, fso.a$, etc. and pss.width, pss, depth, etc.

    You can then hide all fields selection of pre-designed Shell Scheme programs and reset and display all the fields only area and reset them with the following:

    Hide all fields selection of pre-designed Shell Scheme programs and reset the

    getField("pss").display = display.hidden;

    resetForm (["SSP"];

    Hide all fields only space floor and to reset

    getField("fso").display = display.visible;

    resetForm (["Fos"];

    This is not complete, but should help you get started. Note that you can set up A$ fields so that they are automatically calculated according to the value of the Total m2 field, so that the user doesn't have to come in and maybe make a mistake. You can also configure the computed fields to display a value only if the width and depth fields are completed.

  • RADIO BUTTON TALLY - Auto County &amp; display the boxes checked/selected

    Hi, feels like it should be simple and straightforward, but it is obvious to me.

    I have a Questionnaire with say twenty answers YES or NO.

    I used radio buttons grouped as fields in order to choose one or the other.

    I have a field read "YES Tally" alone at the bottom of the questionnaire text, formatted as 'number '.

    I want the form automatically calculate and display the number of YES responses (radio buttons) selected or checked.

    How can I achieve this?

    ZB.

    If you have your export value for the set buttons to '1', then you must use the option of calculation ' field is the sum of: "option of calculation, or you can use the" simplified field "to add the names of the fields." If you use a value other than the value of exports, so you need to write a custom script and either test for the value of exports of the button 'Yes' or for the value of exports not be 'Off '.

  • dynamic radio buttons

    Hope someone can help with this - I have a mySQL table by which customers can check 8 employment categories, they are interested, among the rest of their coordinates.

    I different categories defined as type Bool in mySQL and want to display the details on a web page - with a button indicating which of the categories they are interested. I thought it would be a case of selcting the option button and clicking on 'live data' in the properties and selecting the field in the recordset that you want to attach to, for example:

    <? PHP $row_Recordset1 ["Category1"]? >

    The idea being that if the category has been selected, or equal to 1, the button is enabled, and if not selected, or equal to 0, then the button would be disabled

    But doesn't seem to work - but no doubt is it possible?

    See you soon,.
    Iain

    Scratch that - it's boxes that I had to use, not radio buttons.

    Iain

  • Radio button selections does not save

    I'm creating a form of performance review. I have a section where employees need to rate themselves on a scale of 1 to 5. (1 = low, 2 = good, 3 = meets expectations, 4 = exceeds expectations, 5 = outstanding) I radio for each option buttons so that they are allowed to select a. However, when I go in, as the employee to complete the form and select the radio field I want, the selection does not record.

    Is there a way to make sure the radio button selections are saved?

    Or is there a better option?

    Hi kellyr19545348,

    Please save the PDF under the drive extended to allow other users to save the options they are checking.

    Open a PDF in Acrobat

    Go to file > save as other > Reader Extended PDF > allow more tools

    Thank you

    Abhishek

  • Button gif icon not displayed but the icon of the hierarchy tree.

    Developer and oracle 10 g database

    I was working on windows Xp and oracle10g on button icon and HTree worked very well.
    After that, I installed windows 7 pro, in this icon of the window was not displayed.
    now, even once, I installed windows Xp and run my existing form there is a problem I m facing Htree menu does not display icon but button is displayed.

    I have set all parameters for the icon (gif file).
    define formsweb jar file
    recreated jar file *.gif files.
    Jar -cfv icons.jar *.gif
    copy jar file into java folder
    edit registry 
    edit regstry.dat
    
    it is record group
    
    
    SELECT -1, LEVEL, NODE, icon,S_ID  FROM MENU
    CONNECT BY PRIOR S_ID=S_NO
    START WITH S_ID=1
    order by to_number(s_id)
    
            -1      LEVEL NODE                 ICON                 S_ID 
    ---------- ---------- -------------------- -------------------- -----
            -1          1 MENU                 menu                 1    
            -1          2 SETUP                profile              2    
            -1          3 Location             location             3    
            -1          3 Department           public               4    
            -1          3 Designation          info                 5    
            -1          3 Shift                abc                  6    
            -1          3 Divisions            house                7    
            -1          3 Transporter          Trans                8    
            -1          3 Bank                 bank                 9    
            -1          3 Leave_Type           hospital             10   
    10 rows selected
    I checked again all the icons in the extract with Winrar jar file

    Published by: 867210 on February 7, 2013 23:46

    Edit the Registry.dat file

    First edit this default path and stop OJ4J  and start and run form.
    default.icons.iconpath=
    
    if not working then try this
    default.icons.iconpath=icons
    

    concerning
    -Ahmed

  • value of radio button shows only not in the mysql table

    This looks like a small problem, but I can't seem to find the solution. I created a form on a web page. After the form is completed, a confirmation is sent to the person who filled out the form and a mysql table is populated with the information from the form. Everything works well except for one small thing: the value of the radio button does not appear in the table.

    Here is the form: http://www.webdevpractice.com/genoptix/CE/register.php

    Here is the table on the Web page: http://www.webdevpractice.com/genoptix/CE/admin/index.php you will see that the Contact Me column does not.

    Here insert the php code in the registration form page:

    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registration")) {
      $insertSQL = sprintf("INSERT INTO registrants (registrant_id, first_name, last_name, medtech_id, job_title, company, city, `state`, email, phone, contact) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['registrant_id'], "int"),
                           GetSQLValueString($_POST['first_name'], "text"),
                           GetSQLValueString($_POST['last_name'], "text"),
                           GetSQLValueString($_POST['medtech_id'], "text"),
                           GetSQLValueString($_POST['job_title'], "text"),
                           GetSQLValueString($_POST['company'], "text"),
                           GetSQLValueString($_POST['city'], "text"),
                           GetSQLValueString($_POST['state'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['phone'], "text"),
                           GetSQLValueString(isset($_POST['contact']) ? "true" : "", "defined","'Y'","'N'"));
    

    I used phpMyAdmin to create the db and table. I put the field contact as follows:

    Type: ENUM

    Length/values: ', 'y '.

    Default: no

    Ranking: utf8_unicode_ci

    Can you find the problem?

    I found the problem. I don't broadcast my stupidity, but I have a time I changed the last field of contact_me contact and I forgot to download the change on one of the files (I thought I had downloaded it). In any case, thanks for responding to my message. It is good to know that altruistic GRAMPS remains!

  • Form entry fields are not displayed correctly in APP

    Fields of form, created as a result of Adobe Office, do not display as specified but shaded WHITE. Is there a solution / Fix for this?

    Hello

    Can you please give more information about your problem?

    , You open a PDF form in a mobile application of Reader (Acrobat Reader for iOS) or Android?

    By "shadow", do you mean that the fields in the form have field highlighting like that?

    Acrobat Reader for desktop and mobile apps highlight form fields in a light blue to indicate that they are "to be completed.

    The domain highlighting feature is enabled by default.  It is not possible to disable it in the player of the mobile applications.

    Please let us know if you have another problem with your PDF form.

Maybe you are looking for