Create Semantic DT Table
This creates DT table styled with Semantic UI.
semantic_DT(..., options = list())
... |
datatable parameters, check |
options |
datatable options, check |
if (interactive()){ library(shiny) library(shiny.semantic) ui <- semanticPage( semantic_DTOutput("table") ) server <- function(input, output, session) { output$table <- DT::renderDataTable( semantic_DT(iris) ) } shinyApp(ui, server) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.