An iframe can be created to display the views and windows hosted on other web pages using a shiny wrapper to accomplish the task in a shiny application. This is the server-side function
1 2 3 4 5 6 7 8 | iframe_server(
input,
output,
session,
url = "https://forms.clickup.com/f/265za-1288/YGT0C8JVTA0ZOBKA1M",
height = 600,
width = "100%"
)
|
input |
list of inputs used in the shiny application session |
output |
list of outputs used the shiny application session |
session |
The shiny app session object |
url |
character. Link that the iframe should display |
height |
number. A function wrapper for height of the iframe |
width |
number. A function wrapper for the width of the iframe |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.