mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-07 05:04:58 -05:00
37 lines
1.3 KiB
R
37 lines
1.3 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/render-bootstrap-table.R
|
|
\name{renderBootstrapTable}
|
|
\alias{renderBootstrapTable}
|
|
\title{Table Output (Bootstrap)}
|
|
\usage{
|
|
renderBootstrapTable(expr, ..., css_class = NULL, env = parent.frame(),
|
|
quoted = FALSE, func = NULL)
|
|
}
|
|
\arguments{
|
|
\item{expr}{An expression that returns an R object that can be used with
|
|
\code{\link[xtable]{xtable}}.}
|
|
|
|
\item{...}{Arguments to be passed through to \code{\link[xtable]{xtable}} and
|
|
\code{\link[xtable]{print.xtable}}.}
|
|
|
|
\item{css_class}{An optional string with the Botstrap CSS class to apply to the
|
|
table (options: table-striped, table-bordered, table-hover, table-condensed).}
|
|
|
|
\item{env}{The environment in which to evaluate \code{expr}.}
|
|
|
|
\item{quoted}{Is \code{expr} a quoted expression (with \code{quote()})? This
|
|
is useful if you want to save an expression in a variable.}
|
|
|
|
\item{func}{A function that returns an R object that can be used with
|
|
\code{\link[xtable]{xtable}} (deprecated; use \code{expr} instead).}
|
|
}
|
|
\description{
|
|
Creates a reactive table using the Bootstrap design that is suitable for assigning to
|
|
an \code{output} slot.
|
|
}
|
|
\details{
|
|
The corresponding HTML output tag should be \code{div} and have the CSS class
|
|
name \code{shiny-html-output}.
|
|
}
|
|
|