mercredi 14 février 2018

Putting shiny_iconLink and checkboxInput on the same line in Shiny

I'm trying to put a shiny_iconlink() with a modal on the same line as a checkboxInput. I've been messing around with div classes and ids, but nothing seems to be working.

fluidRow(
  column(width = 4,
         span(id="icon", shiny_iconlink()),
         checkboxInput("checkbox", "get me inline"),
         bsModal("modal", "title", "icon", "content")
        )
)



Aucun commentaire:

Enregistrer un commentaire