I have quite a problem. I'm trying to run a program with quite a few different settings, which can be set in the ui. In my case the user may need to run the programm with the same settings more than once. My Problem is that if you refresh or restart the UI everything is set to the default values. For example:
numericInput("1",
label = h4("...."),
4,
min=1,
max=100,
step=1
),
br(),
numericInput("2",
label = h4("..."),
1000000,
min=1,
max=100000000,
step=1
)
If I set the numericInput "1" to 7, and rerun the program it will be by default at 4. Due to the fact that i have quite a few of those settings, this can be quite a buzzkill. So my question is:"Is there a way to save the changes i have made?"
thank you:)