Closed FractalPolarity closed 4 years ago
Looks like the problem is present with shiny.semantic slider_input as well as standard shiny sliderInput.
server <- shinyServer(function(input, output) {router(input, output) slider_ui <- sliderInput("slider", "slider_label", 0 , 10 , 3, 1, 3) output$slider <- renderUI(slider_ui) } Above makes whole ui refresh on routing ( even elements outside router_ui() )
server <- shinyServer(function(input, output) {
router(input, output) slider_ui <- sliderInput("slider", "slider_label", 0 , 10 , 3, 1, 3)
output$slider <- renderUI(slider_ui)
}
router_ui()
I've checked some additional components (numericInput, semantic date_input, actionButton) and it is working fine with them.
@dokato this should be fixed as well
Yeap, this looks fine.
Looks like the problem is present with shiny.semantic slider_input as well as standard shiny sliderInput.
server <- shinyServer(function(input, output) {
router(input, output) slider_ui <- sliderInput("slider", "slider_label", 0 , 10 , 3, 1, 3)
output$slider <- renderUI(slider_ui)
}
Above makes whole ui refresh on routing ( even elements outsiderouter_ui()
)I've checked some additional components (numericInput, semantic date_input, actionButton) and it is working fine with them.