DTTable Module Class
DTTable.RdGTTable module that displays tables using DT that are supported by
DT::renderDT() and DT::DTOutput().
Super class
DarwinShinyModules::ShinyModule -> DTTable
Active bindings
fun(
function) Function to produce agttable with, i.egt::gt.args(
list) Arguments for said function as a named list i.e.list(data = iris).
Examples
library(DarwinShinyModules)
dtTable <- DTTable$new(
fun = DT::datatable,
args = list(data = iris)
)
if (interactive()) {
preview(dtTable)
}