闪亮的输入文字“必需的参数”

时间:2014-08-05 14:47:56

标签: r tags shiny

我正试图在R闪亮中获得这行代码:

<input id="inputId" type="text" value="value" required/>

如何使用闪亮的标签来做到这一点?


我知道

tags$input(id="inputId", type="text",  value = "value")

产生

<input id="inputId" type="text" value="value"/>

但我不知道如何添加所需的arg。 在此先感谢您的帮助:)

1 个答案:

答案 0 :(得分:2)

 tags$input(id="inputId", type="text",  value = "value", required=NA)