Dynamic Items in Form Select Field

Hi Michael,

Yes it can be done with the radio buttons

  1. Add a dynamic List under Select expert and link it to the contacts collection.

  2. Delete all but one of the radio button fields you’ve already made. Drag and drop the one remaining into the dynamic list above.

  3. Link the Field label to the contact name. (get text from contacts and choose name)

  4. Add an Html embed right below the radio button field (inside the dynamic item) and add the following code, replacing the NAME & EMAIL with dynamic fields:

  <script type="text/javascript" language="JavaScript">
    <!--
    document.write('<input ');
    document.write('   type="hidden" ');
    document.write('   name="Expert" ');
    document.write('   value="NAME">');
    //-->
    <!--
    document.write('<input ');
    document.write('   type="hidden" ');
    document.write('   name="Expert-email" ');
    document.write('   value="EMAIL">');
    //-->
    </script>

Like this:

Now publish the page, try sending a form and tell me if it works :slight_smile:

Good Luck,
Anna

2 Likes