Shiny module for filtering data
Arguments
- id
unique identifier for the module to prevent namespace clashes when making multiple calls to this shiny module.
- data
an array wrapped in
reactive()
containing the data to be filtered.- hide
logical indicating whether the data filtering user interface should be hidden from the user, set to FALSE by default.
- hover_text
text to display on download button when user hovers cursor over button, set to NULL by default to turn off hover text.
Author
Dillon Hammill, Dillon.Hammill@anu.edu.au
Examples
if (interactive()) {
library(shiny)
library(rhandsontable)
library(shinyjs)
ui <- fluidPage(
useShinyjs(),
dataInputUI("input1"),
dataFilterUI("filter1"),
rHandsontableOutput("data1")
)
server <- function(input,
output,
session) {
data_input <- dataInputServer("input1")
# list with slots data and rows (indices)
data_filter <- dataFilterServer("filter1",
data = data_input
)
output$data1 <- renderRHandsontable({
if (!is.null(data_filter$data())) {
rhandsontable(data_filter$data())
}
})
}
shinyApp(ui, server)
}