textInputGroup | R Documentation |
Text input group and custom widgets append to left ar/and right
textInputGroup(
textId,
label = "",
value = "",
placeholder = "enter text",
left_text = NULL,
right_text = NULL,
style = "width: 100%;"
)
textId |
text box id |
label |
text label for this input group |
value |
default value for the text input |
placeholder |
default placeholder text for the text input if no value |
left_text |
text or icon add to the left side |
right_text |
text or icon add to the right side |
style |
additional style add to the group |
If no text is specified for both left and right, the return is almost identical to clearableTextInput
text input group component
if(interactive()){
ui <- fluidPage(
textInputGroup("id1", "left", left_text = "a"),
textInputGroup("id2", "right", right_text = "b"),
textInputGroup("id3", "both", left_text = "$", right_text = ".00"),
textInputGroup("id4", "none"),
textInputGroup("id5", "icon", left_text = icon("house")),
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.