We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maybe I need to turn off "ignoreNULL" in this part of mod_filters_oneway.R?
observeEvent(input$oneway_input_counties, { if (!is.null(input$oneway_input_counties)) { filtered_cities <- tbi_tables$hh %>% dplyr::filter(hh_county %in% input$oneway_input_counties) %>% dplyr::select(hh_city) %>% unique() %>% na.omit() updateSelectInput( session = session, inputId = "oneway_input_cities", label = "Household City/Township", choices = filtered_cities$hh_city, selected = NULL ) } else { selectInput( session = session, inputId = ns("oneway_input_cities"), "Household City/Township", choices = unique(na.omit(tbi_tables$hh$hh_city)), selected = NULL) }}, ignoreInit = TRUE )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
maybe I need to turn off "ignoreNULL" in this part of mod_filters_oneway.R?
The text was updated successfully, but these errors were encountered: