↧
Answer by Neil for How to dynamically populate dropdown box choices in shiny...
I got the answer for above. Here is what I did. ui.RuiOutput("city_dropdown")And my server.R looks like followingoutput$city_dropdown <- renderUI({ city <- reg_city(final_data) city <-...
View ArticleAnswer by Victorp for How to dynamically populate dropdown box choices in...
Use updateSelectInput in your server like below and set choices = NULL in your ui :function(input, output, session) { # If this isn't reactive you can put it in your global choices_cities <-...
View ArticleHow to dynamically populate dropdown box choices in shiny dashboard
I am developing one app in shiny dashboard in that I want to dynamically populate dropdown box once csv is uploaded. Dropdown will contain top 10 cities by user registrations which I get from following...
View Article