ShinyModule | R Documentation |
Module Decorator Class
Module Decorator Class
instanceId
(character(1)
) Random ID
parentNamespace
(character(1)
) Namespace parent module
moduleName
(character(1)
) Module name
moduleId
(character(1)
) Module id
moduleName-instanceId
namespace
(character(1)
) Namespace, composed like:
[parentNamespace-]moduleName-instanceId
where parentNamespace
is
optional
reactiveValues
(reactivevalues
) Reactive values. use
shiny::isolate()
to get a non-reactive item from the reactive
environment.
new()
Initializer method
ShinyModule$new()
(self
)
validate()
Validator method
ShinyModule$validate()
(self
)
UI()
Method to include a tagList to include the body.
ShinyModule$UI()
(tagList
)
server()
Method to handle the back-end.
ShinyModule$server(input, output, session)
input
(input
) Input from the server function.
output
(output
) Output from the server function.
session
(session
) Session from the server function.
(NULL
)
clone()
The objects of this class are cloneable with this method.
ShinyModule$clone(deep = FALSE)
deep
Whether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.