inputServer | R Documentation |
data.frame
An input server for a data.frame
inputServer(id, data, ...)
id |
|
data |
single row |
... |
further arguments for methods |
A new method for this can be added if you wish to alter the default behavior of the pop-up modals in eDT
.
modified version of data
Jasper Schelfhout
if(interactive()){
library(shiny)
ui <- inputUI('id')
server <- function(input,output,session){
input <- inputServer("id", mtcars[1,])
observe({print(input())})
}
shinyApp(ui, server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.