mod_convert | R Documentation |
xxx
A shiny Module.
Convert_conf()
Convert_ui(id)
Convert_server(
id,
dataIn = NULL,
steps.enabled = reactive({
NULL
}),
remoteReset = reactive({
FALSE
}),
steps.status = reactive({
NULL
}),
current.pos = reactive({
1
}),
verbose = FALSE
)
id |
xxx |
dataIn |
xxx |
steps.enabled |
xxx |
remoteReset |
xxx |
NA
NA
Samuel Wieczorek
ui <- fluidPage(
nav_ui('Convert')
)
server <- function(input, output){
rv <- reactiveValues(
dataIn = NULL,
dataOut = NULL
)
observe({
rv$dataOut <- nav_server(id = 'Convert',
dataIn = reactive({data.frame()}))
})
observeEvent(rv$dataOut, {
print('toto')
browser()
})
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.