R/selectInput_mod.R

Defines functions selectInput_mod_UI selectInput_mod

# UI Function
selectInput_mod_UI <- function(id, ...) {
  
  ns = NS(id)
  
  selectInput(ns("run1"), ...)

}

# Server function
selectInput_mod <- function(input, output, session) {
  
  output <- reactive({input$run1})
  
  return(output)
}
tanerumit/handyshiny documentation built on Dec. 16, 2019, 12:48 a.m.