App setup
- Go to App Library, and click + Add an app in the top right corner.
- Select Jotform in the Client-facing section.
- After clicking on the app, click on Install in the top-right.
- Give the app a name and icon, and configure whether all clients can see it or only a subset.
- The documentation recommends setting this up as an automatic app so that your Jotform will be visible to all clients. If you only want this app to be visible to one or more specific clients, set this as a manual app.
- Leave the app set to Show as embed so that the client isn’t directed outside of the portal.
- Next, go to your My Forms page in Jotform.
- To share a Form, click the drop-down menu for the desired form and click Publish Form.
- Click Embed in the top menu and then in the right dropdown, select iframe.
- Click the Copy Code button.
- Go back to the App Setup page and paste the iframe code into the content box.
- Click Add to be redirected to the app.
Additional configuration
With this app, the Copy link method has a scrolling error. “We recommend only using the iframe code provided by Jotform.” Occasionally the code provided by Jotform will not fill the full screen due to the settings provided in the Jotform iframe code. To fix this issue, you’ll want to do the following:-
Near the top of the iframe code there’s a line that says:
style="min-width:100%;max-width:100%;height:539px;border:none;" -
Update the height in that style to be 100%:
style="min-width:100%;max-width:100%;height:100%;border:none;"