がimg
がラジオボタンに表示されていません。ここでは、ロゴへの直接リンクです。
あなたは一度だけこれをしなければならない場合は、画像、radioButtons('test', 'Radio buttons with MathJax choices', choices = choices, inline = TRUE)
の出力をコピーtags$div
に置き、そして追加することができます:あなたはこの何回も行う必要がある場合、
fluidRow(column(width=12,
tags$div(HTML('<div id="test" class="form-group shiny-input-radiogroup shiny-input-container shiny-input-container-inline">
<label class="control-label" for="test">Radio buttons with MathJax choices</label>
<div class="shiny-options-group">
<label class="radio-inline">
<input type="radio" name="test" value="equation" checked="checked"/>
<span>\\(e^{i \\pi} + 1 = 0 \\)</span>
</label>
<label class="radio-inline">
<input type="radio" name="test" value="logo"/>
<span><img src="http://i1.wp.com/www.r-bloggers.com/wp-content/uploads/2016/02/Rlogo.png?resize=300%2C263"/></span>
</label>
</div>
</div> ')),
br(),
h3(textOutput('selected'))
))
をあなたがすることができますradioButtons_withHTML
関数を定義:
radioButtons_withHTML <- function (inputId, label, choices, selected = NULL, inline = FALSE,
width = NULL)
{
choices <- shiny:::choicesWithNames(choices)
selected <- if (is.null(selected))
choices[[1]]
else {
shiny:::validateSelected(selected, choices, inputId)
}
if (length(selected) > 1)
stop("The 'selected' argument must be of length 1")
options <- generateOptions_withHTML(inputId, choices, selected, inline,
type = "radio")
divClass <- "form-group shiny-input-radiogroup shiny-input-container"
if (inline)
divClass <- paste(divClass, "shiny-input-container-inline")
tags$div(id = inputId, style = if (!is.null(width))
paste0("width: ", validateCssUnit(width), ";"), class = divClass,
shiny:::controlLabel(inputId, label), options)
}
generateOptions_withHTML <- function (inputId, choices, selected, inline, type = "checkbox")
{
options <- mapply(choices, names(choices), FUN = function(value,
name) {
inputTag <- tags$input(type = type, name = inputId, value = value)
if (value %in% selected)
inputTag$attribs$checked <- "checked"
if (inline) {
tags$label(class = paste0(type, "-inline"), inputTag,
tags$span(HTML(name)))
}
else {
tags$div(class = type, tags$label(inputTag, tags$span(HTML(name))))
}
}, SIMPLIFY = FALSE, USE.NAMES = FALSE)
div(class = "shiny-options-group", options)
}
オリジナルのものとの違いは、ボタンの名前を作成するための呼び出しgenerateOptions_withHTML
ある、と私は周りHTML()
機能を追加しましたエスケープを防ぐためにtags$span
の210。これらの関数を別のファイルに入れて、source
を使用することができます。
radioButtons_withHTML('test', 'Radio buttons with MathJax choices',choices = choices, inline = TRUE)
を使用してradioButtons
を作成することができます。
ありがとうございます!これはまさに私が必要としていたものです。 Rstudioがこれを主なShinyリリースに組み込んだ方がいいでしょう。 – jbryer