ShinyModule {DrugExposureDiagnostics} | R Documentation |
Module Decorator Class
Description
Module Decorator Class
Module Decorator Class
Active bindings
instanceId
(
character(1)
) Random IDparentNamespace
(
character(1)
) Namespace parent modulemoduleName
(
character(1)
) Module namemoduleId
(
character(1)
) Module idmoduleName-instanceId
namespace
(
character(1)
) Namespace, composed like:[parentNamespace-]moduleName-instanceId
whereparentNamespace
is optionalreactiveValues
(
reactivevalues
) Reactive values. useshiny::isolate()
to get a non-reactive item from the reactive environment.
Methods
Public methods
Method new()
Initializer method
Usage
ShinyModule$new()
Returns
(self
)
Method validate()
Validator method
Usage
ShinyModule$validate()
Returns
(self
)
Method UI()
Method to include a tagList to include the body.
Usage
ShinyModule$UI()
Returns
(tagList
)
Method server()
Method to handle the back-end.
Usage
ShinyModule$server(input, output, session)
Arguments
input
(
input
) Input from the server function.output
(
output
) Output from the server function.session
(
session
) Session from the server function.
Returns
(NULL
)
Method clone()
The objects of this class are cloneable with this method.
Usage
ShinyModule$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.