Skip to contents

Update data in r variable when an update is made in the datatable

Usage

update_settings_datatable(
  input,
  tab_id = character(),
  r = shiny::reactiveValues(),
  ns = character(),
  table = character(),
  dropdowns = character(),
  i18n = character()
)

Arguments

input

Shiny input variable

r

Shiny reactive value, used to communicate between modules (reactiveValue)

ns

Shiny namespace

table

Name of the database table used (character)

dropdowns

Dropdowns displayed on datatable (character)

i18n

Translator object from shiny.i18n library

Examples

if (FALSE) {
update_settings_datatable(r = r, ns = ns, table = "datasets", dropdowns = "data_source", i18n = i18n)
}