inputServer {editbl} | R Documentation |
An input server for a data.frame
Description
An input server for a data.frame
Usage
inputServer(id, data, ...)
Arguments
id |
|
data |
single row |
... |
further arguments for 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
modified version of data
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]