Generate an HTML text input
text(value = "", title = "")
value | initial value |
---|---|
title | title of input |
# 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"