renderRowFunctions | R Documentation |
These functions render an interactive row of the preview table used to import CSV files in the module.
renderRowTextInput(ColNames, Label = NULL, Values = NULL, Enabled = TRUE) renderRowCheckBox(ColNames, Label = NULL, Values = NULL, Enabled = TRUE) renderRowSelect( ColNames, Label = NULL, Values = NULL, Choices = NULL, Enabled = TRUE )
ColNames |
The names of the columns are required to generate input-ids for the widgets. |
Label |
An optional label for the input widget in each column. Not supported for all interactive row types. |
Values |
Optional values to be set. |
Enabled |
Is the row interactive or does it only show the current state (not vectorised). |
Choices |
List of values to select from. If elements of the list are named, then that name — rather than the value — is displayed to the user (@seealso shiny::selectInput). |
renderRowCheckBox
creates a tag list of a table row with a check box in each
cell.
renderRowCheckBox
creates a tag list of a table row with a check box in each
cell.
renderRowSelect
creates a tag list of a table row with a select widget
in each cell.
A list()
with a shiny.tag
class that can be converted into an HTML
string via as.character()
and saved to a file with save_html()
.
The package does NOT export these functions.
About Shiny HTML tag lists refer to htmltools::builder.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.