-
Notifications
You must be signed in to change notification settings - Fork 4
Description
ALSO happens with everything that is translated in particular the data input from the user...
if the user of an app have altered the initial values of the parameters and then changes the language they are re-rendered and so the current configuration of the parameters is lost
this could be fixed i guess by passing to the update parameter (selected, value, ...) the current value of the input--- that is, all inputs would have to have the corresponding reactive called in the yaml file...
for example
name_column:
show: true
input_type: selectInput
input_params:
label: name_column
choices: data_input_names()
selected: input$name_column
update_param: selected
the only problem with this is that firtsly input$name_column is going to be null, so what we really want is something like
ifelse(is.null(input$name_column), "...", input$name_column)