View source: R/dataTableModule.R
the server for a DataTable shiny module
1 2 3 4 5 6 7 8 9 10 11 | dataTableServer(
id,
input,
output,
session,
tbl,
selectionPolicy = reactive("multiple"),
wrapLongTextInCells = reactive(TRUE),
searchString = reactive(""),
rownames.to.display = reactive("all")
)
|
input |
enviroment provided by shiny |
output |
enviroment provided by shiny |
session |
enviroment provided by shiny |
tbl |
data.frame |
selectionPolicy |
character string, "none", "single", or "multiple" |
wrapLongTextInCells |
logical, TRUE or FALSE |
searchString |
character string, selects all rows with this, default "" (no search) |
rownames.to.display |
character vector, default "all", |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.