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
renderDT()
MockShinySession
The following code generates an error when I'd expect it to print the JSON sent to the browser.
library(shiny) library(DT) session <- MockShinySession$new() isolate({ outFunc <- renderDT({ head(mtcars) }) outFunc(session, "name") })
Error in shiny::snapshotPreprocessInput(paste0(name, "_state"), function(value) { : snapshotPreprocessInput() needs a session object.
The text was updated successfully, but these errors were encountered:
Close #1131. Pass the relevant shinysession from renderFunc to snapsh…
80e3dc7
…otPreprocessInput
shinysession
renderFunc
snapshotPreprocessInput()
578f7cd
…otPreprocessInput (#1132)
Successfully merging a pull request may close this issue.
The following code generates an error when I'd expect it to print the JSON sent to the browser.
The text was updated successfully, but these errors were encountered: