selectInput valid values

Hi everyone!

If i have the following selectInput:

 observeEvent(input$plot, {
    
    insertUI(
      selector = "#plot",
      where = "afterEnd",
      ui = selectInput(
        "grau",
        label = "Grau:",
        choices = valor_grau
      )
    )
  })

If i have a valor_grau <- df$GRAU, before, can my "choises" values be called that way?

I need to create a list of these values (characters) but it just not working.

It was solved!

I just put the observEvent in a wrong place.

Apologies

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.