mod_convert: xxx

mod_convertR Documentation

xxx

Description

xxx

A shiny Module.

Usage

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
)

Arguments

id

xxx

dataIn

xxx

steps.enabled

xxx

remoteReset

xxx

Value

NA

NA

Author(s)

Samuel Wieczorek

Examples



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)

samWieczorek/Dapar2 documentation built on Oct. 12, 2023, 9:54 a.m.