Learn R Programming

editbl (version 1.3.0)

inputServer: An input server for a data.frame

Description

An input server for a data.frame

Usage

inputServer(id, data, ...)

Value

modified version of data

Arguments

id

character(1) module id

data

single row data.frame

...

further arguments for methods

Author

Jasper Schelfhout

Details

A new method for this can be added if you wish to alter the default behavior of the pop-up modals in eDT.

Examples

Run this code
if(interactive()){
  library(shiny)
  ui <- inputUI('id')
  server <- function(input,output,session){
    input <- inputServer("id", mtcars[1,])
    observe({print(input())})
  }
shinyApp(ui, server)
}

Run the code above in your browser using DataLab