We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems like error messages are not displayed. Is there a way to display errors, warnings etc since I want to use this on a course.
The text was updated successfully, but these errors were encountered:
Can you tell us which display mode are you using for the apps? Is it editor and viewer?
Sorry, something went wrong.
There doesn't seem to be a difference whether it's viewer or editor.
Here is how the app normally looks like in R shiny:
Here is how the app looks like in shinylive (showing both with and without editor):
Here is my test app:
--- title: "Shinylive" format: html: format: html filters: - shinylive --- ```{shinylive-r} #| standalone: true #| components: [editor, viewer] shinyApp( ui=fluidPage( selectInput("data_input",label="Select data", choices=c("","mtcars","faithful","iris")), tableOutput("table_output") ), server=function(input, output) { getdata <- reactive({ get(input$data_input,'package:datasets') }) output$table_output <- renderTable({head(getdata())}) }) ```
quarto 1.4.549 quarto-shinylive 0.1.0
No branches or pull requests
It seems like error messages are not displayed. Is there a way to display errors, warnings etc since I want to use this on a course.
The text was updated successfully, but these errors were encountered: