mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-13 17:08:05 -05:00
* Update roxygen and regenerate. Mostly just whitespace changes and `code` -> `verb`. * R6 documentation for MockShinySession * Install roxygen from GH * % are now auto-escaped (We still need to go find the rest) * Fixed the ramining \% in roxygen Found looking for ^#'.*\\% in all R files, so I believe this is all of them. * Regenerate docs * Decreate indent in roxygen so paragraphs don't get interpreted as code blocks. https://github.com/r-lib/roxygen2/issues/948#issuecomment-546386172 * Namespace * Add MockShinySession reference to pkgdown. * Clean up test warnings * Export session
28 lines
912 B
R
28 lines
912 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/bookmark-state.R
|
|
\name{setBookmarkExclude}
|
|
\alias{setBookmarkExclude}
|
|
\title{Exclude inputs from bookmarking}
|
|
\usage{
|
|
setBookmarkExclude(names = character(0), session = getDefaultReactiveDomain())
|
|
}
|
|
\arguments{
|
|
\item{names}{A character vector containing names of inputs to exclude from
|
|
bookmarking.}
|
|
|
|
\item{session}{A shiny session object.}
|
|
}
|
|
\description{
|
|
This function tells Shiny which inputs should be excluded from bookmarking.
|
|
It should be called from inside the application's server function.
|
|
}
|
|
\details{
|
|
This function can also be called from a module's server function, in which
|
|
case it will exclude inputs with the specified names, from that module. It
|
|
will not affect inputs from other modules or from the top level of the Shiny
|
|
application.
|
|
}
|
|
\seealso{
|
|
\code{\link[=enableBookmarking]{enableBookmarking()}} for examples.
|
|
}
|