| inputUI {editbl} | R Documentation | 
An input UI for a data.frame
Description
An input UI for a data.frame
Usage
inputUI(id, ...)
Arguments
id | 
 
  | 
... | 
 arguments passed onto methods  | 
Details
A new method for this can be added if you wish to alter the default behavior of the pop-up modals in eDT.
Value
HTML. A set of input fields corresponding to the given row.
Author(s)
Jasper Schelfhout
Examples
if(interactive()){
  library(shiny)
  ui <- inputUI('id')
  server <- function(input,output,session){
    input <- inputServer("id", mtcars[1,])
    observe({print(input())})
  }
shinyApp(ui, server)
}
[Package editbl version 1.0.5 Index]