Learn R Programming

editbl (version 1.2.0)

inputUI: An input UI for a data.frame

Description

An input UI for a data.frame

Usage

inputUI(id, ...)

Value

HTML. A set of input fields corresponding to the given row.

Arguments

id

character(1) module id

...

arguments passed onto 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