↧
Answer by YBS for R Shiny: Updating Multiple Dependent Dropdown Menus with...
Try this # WORKING CORRECTLY: Clicking city on map should update country and city selected observeEvent(input$map_marker_click, { if(!is.null(input$map_marker_click)){ updateSelectizeInput( session,...
View ArticleR Shiny: Updating Multiple Dependent Dropdown Menus with Leaflet Map Click
I have an interactive map rendered with leaflet in a shiny dashboard in R. The dashboard also contains two dropdown menus created with selectizeInput, where the options available in the second dropdown...
View Article