Skip to contents

Update r reactive variable, requesting the corresponding table in the database

Usage

update_r(
  r = shiny::reactiveValues(),
  m = shiny::reactiveValues(),
  table = character(),
  i18n = character()
)

Arguments

r

A shiny reactiveValue, used to communicate between modules in the ShinyApp (reactiveValues object)

m

A shiny reactiveValue, used to communicate between modules in the ShinyApp (reactiveValues object)

table

Database table name (character)

i18n

Translator object from shiny.i18n library

Examples

if (FALSE) {
update_r(r = r, table = "subsets", i18n = i18n)
}