Browse Source

Update rstudio DT url and urls in docs imported from DT

tags/0.1.9
Maxime Wack 3 years ago
parent
commit
1afd52d06e
2 changed files with 5 additions and 5 deletions
  1. +1
    -1
      R/output.R
  2. +4
    -4
      man/datatable.Rd

+ 1
- 1
R/output.R View File

@@ -79,7 +79,7 @@ pander.desctable <- function(x = NULL,
#' @note
#' You are recommended to escape the table content for security reasons (e.g. XSS attacks) when using this function in Shiny or any other dynamic web applications.
#' @references
#' See \url{http://rstudio.github.io/DT} for the full documentation.
#' See \url{https://rstudio.github.io/DT} for the full documentation.
#' @examples
#' library(DT)
#'


+ 4
- 4
man/datatable.Rd View File

@@ -57,14 +57,14 @@ datatable(data, ...)
\item{...}{arguments passed to \code{format}.}

\item{options}{a list of initialization options (see
\url{http://datatables.net/reference/option/}); the character options
\url{https://datatables.net/reference/option/}); the character options
wrapped in \code{\link[htmlwidgets]{JS}()} will be treated as literal
JavaScript code instead of normal character strings; you can also set
options globally via \code{\link{options}(DT.options = list(...))}, and
global options will be merged into this \code{options} argument if set}

\item{class}{the CSS class(es) of the table; see
\url{http://datatables.net/manual/styling/classes}}
\url{https://datatables.net/manual/styling/classes}}

\item{callback}{the body of a JavaScript callback function with the argument
\code{table} to be applied to the DataTables instance (i.e. \code{table})}
@@ -91,7 +91,7 @@ third), or \code{c('Species', 'Sepal.Length')}; since the row names take
the first column to display, you should add the numeric column indices
by one when using \code{rownames}}

\item{style}{the style name (\url{http://datatables.net/manual/styling/});
\item{style}{the style name (\url{https://datatables.net/manual/styling/});
currently only \code{'default'}, \code{'bootstrap'}, and
\code{'bootstrap4'} are supported. Note that DT doesn't contain the theme
files so in order to display the style correctly, you have to link
@@ -181,5 +181,5 @@ datatable(data.frame(x = Sys.time()))
###
}
\references{
See \url{http://rstudio.github.io/DT} for the full documentation.
See \url{https://rstudio.github.io/DT} for the full documentation.
}

Loading…
Cancel
Save