【发布时间】:2020-03-03 06:47:54
【问题描述】:
[上一个问题]How to include an action link into a button's label?
如何在 sidbarPanel 右侧对齐“获取帮助”?
library(shiny)
ui <- fluidPage(
br(),
selectInput(
inputId = "some_id",
label = HTML("Please choose A or B",
as.character(actionLink(inputId = 'action_link', label = 'get help'))),
choices = c("choice A", "choice B"),
selected = "choice A",
selectize = F
)
)
server <- function(input, output) {}
shinyApp(ui, server)
【问题讨论】:
标签: html shiny label actionlink selectinput