inputUI | R Documentation |
data.frame
An input UI for a data.frame
inputUI(id, ...)
id |
|
... |
arguments passed onto methods |
A new method for this can be added if you wish to alter the default behavior of the pop-up modals in eDT
.
HTML. A set of input fields corresponding to the given row.
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.