Versions Compared

Key

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

...

  1. append to the URL's query string the following to adjust the height and width. Note: resizing must be set to false, and the iframe will not auto resize and may now include scroll bars.
    1. Using the Embedded Form option in the share dialog a script block like the following will appear

      Code Block
      <script xmlns="http://www.w3.org/1999/xhtml" src="https://its-forms-dev.syr.edu:443/frevvo/web/tn/ITS/u/cf925084-40a0-4339-a69f-4ec7ed2009ee/app/_t5h9wAqREeifVISMFRu6NQ/formtype/_EsjWsAqfEeifVISMFRu6NQ/embed?id=w427aa&container=true&resize=true" type="text/javascript"></script>
    2. The src="..." section is the url, within contains the form URL. Within the URL you will see a section text after the word "embed?" the This text after is the query string.

    3. Find the resize=true section of the url query string and change it to resize=false
    4. Append at the end of the url and additonal query string an additional & and then the following. Each query string parameter requires separation by using an ampersand (&).

      1.  &width=400px&height=1000px

      2. Code Block
        <script xmlns="http://www.w3.org/1999/xhtml" src="https://its-forms-dev.syr.edu:443/frevvo/web/tn/ITS/u/cf925084-40a0-4339-a69f-4ec7ed2009ee/app/_t5h9wAqREeifVISMFRu6NQ/formtype/_EsjWsAqfEeifVISMFRu6NQ/embed?id=w427aa&container=true&resize=false&width=400px&height=1000px" type="text/javascript"></script>
      3. You may also need to add "&scrolling" to allow scrolling.

...