Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Table of Contents

...

  • Field Label– label for the field
  • Field Size– size of the field on the form
  • Rules
    • Required– must be filled out to submit form
    • Always Display– makes sure the field is always displayed for dynamic forms
    • ConditionalProgressive Profiling– hides field and replaces it with another conditional field if the information is already known (hiding Email and replacing with Website, for example) – does not work with external forms
    • Do not Pre-Fill– never pre-fills the field, overriding the form properties
    • Hidden– field is rendered to the form but hidden from the user
  • Default Value– prepopulate the field with the information you enter here
  • Field Error Message– error displayed when a required field is missed or formatted incorrectly
  • Identifier– internal field ID
  • Visible
    • Always – always displays regardless of other responses
    • Only When...– displays based on rules (a "Please Specify" text field appearing when someone selects "Other" in a drop-down menu, for example)
  • Container CSS Class– sets the CSS class of the field's container for forms using layout templates
  • CSS Class– sets the CSS class of the field for forms using layout templates
  • Load from URL Param– set the name of a parameter for the form to scan for; if the form detects the parameter in the URL, it will auto-fill the field with the value

    Info

    You can also add a query string parameter to the form's URL. For example, if the field is set to scan for the parameter "text1," and the url is "https://t1.llanalytics.com/view-form.php?ll_custID=XXXXX&id=XXXX&text1=hello," the field would insert "hello" when the form's iframe loads in.


...

Although your embed code might look different, here's an example:

Original Lead Liaison iframe Code:

Code Block
<iframe src='http://www2.athena-tech.com/view-form.php?id=45528' width='100%' height='500' type='text/html' frameborder='0' allowTransparency='true' style='border: 0'></iframe>

Updated HTTP Secure iframe Code:

Code Block
<iframe src='https://t1.llanalytics.com/view-form.php?ll_custID=112489&id=45528' width='100%' height='500' type='text/html' frameborder='0' allowTransparency='true' style='border: 0'></iframe>

...