Generate an HTML text input

text(value = "", title = "")

Arguments

value

initial value

title

title of input

Examples

# Run this in a cell to display a text input input <- text(value = "Default value", title = "Your title") # In another cell, retrieve the value of the textbox: as.character(input)
#> [1] "Default value"