tableHTML_output: Implementing tableHTML in shiny

View source: R/render_tableHTML_family.R

tableHTML_outputR Documentation

Implementing tableHTML in shiny

Description

This function is used to implement tableHTML in a shiny app. It is used in the shiny ui.R file. Internally, it just calls uiOutput, since tableHTML creates HTML code.

Usage

tableHTML_output(outputId, ...)

Arguments

outputId

input name.

...

Other arguments to passed along to shiny::uiOutput()

See Also

uiOutput()

Examples

## Not run: 

library(shiny)
shinyApp(
 ui = fluidPage(
  fluidRow(
  #leave some spacing
  br(),
  column(width = 1),
  tableHTML_output("mytable"))
 ), 
server = function(input, output) {
 output$mytable <- render_tableHTML( 
  tableHTML(mtcars)
 )}
)


## End(Not run)


tableHTML documentation built on April 18, 2023, 1:11 a.m.