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
Example :
library(shiny) library(esquisse) library(nycflights13) library(data.table) ui <- fluidPage( tags$h1("Use esquisse as a Shiny module"), esquisse_ui( id = "esquisse", header = FALSE, # dont display gadget title controls = NULL, container = esquisseContainer(height = "700px") ) ) server <- function(input, output, session) { # warning passing data.table data_rv <- reactiveValues(data = data.table(nycflights13::flights[1:20000,]), name = "iris") # no warning passing data.frame ! # data_rv <- reactiveValues(data = nycflights13::flights[1:20000,]), name = "iris") esquisse_server( id = "esquisse", data_rv = data_rv ) } shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
Moreover, I think that filter computation is processed even if disable in controls (but not showed as expected)
controls
Sorry, something went wrong.
First issue was in {datamods}, should work if you re-install from GitHub:
remotes::install_github("dreamRs/datamods")
and now filters should not be created if the panel is disabled (you need to re-install esquisse from GitHub as well)
No branches or pull requests
Example :
The text was updated successfully, but these errors were encountered: