Description Usage Arguments Value
A file upload can be created to display local machine or hosted directories to share information with the shiny application
1 2 3 4 5 6 7 8 9 | file_upload_server(
input,
output,
session,
label = "Please upload the Excel file",
accept = c(".xlsx"),
multiple = F,
rl = "Input File Module"
)
|
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 |
label |
The label of the file upload UI |
accept |
The file extension to accept |
multiple |
Can multiple items be shared. Default FALSE |
rl |
The reactive label for debugging |
HTML UI code for a shiny application
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.